mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
SQL Operations Studio Public Preview 1 (0.23) release source code
This commit is contained in:
43
build/tfs/linux/x64/Dockerfile
Normal file
43
build/tfs/linux/x64/Dockerfile
Normal file
@@ -0,0 +1,43 @@
|
||||
FROM microsoft/vsts-agent:ubuntu-14.04-standard
|
||||
MAINTAINER Joao Moreno <joao.moreno@microsoft.com>
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update
|
||||
|
||||
# Dependencies
|
||||
RUN apt-get install -y build-essential
|
||||
RUN apt-get install -y gcc-multilib g++-multilib
|
||||
RUN apt-get install -y git
|
||||
RUN apt-get install -y dpkg-dev
|
||||
RUN apt-get install -y zip
|
||||
RUN apt-get install -y rpm
|
||||
RUN apt-get install -y createrepo
|
||||
RUN apt-get install -y python-gtk2
|
||||
RUN apt-get install -y jq
|
||||
RUN apt-get install -y xvfb
|
||||
RUN apt-get install -y fakeroot
|
||||
RUN apt-get install -y libgtk2.0-0
|
||||
RUN apt-get install -y libgconf-2-4
|
||||
RUN apt-get install -y libnss3
|
||||
RUN apt-get install -y libasound2
|
||||
RUN apt-get install -y libxtst6
|
||||
RUN apt-get install -y libfuse2
|
||||
RUN apt-get install -y libnotify-bin
|
||||
RUN apt-get install -y libx11-dev
|
||||
RUN apt-get install -y libxss1
|
||||
RUN apt-get install -y libx11-xcb-dev
|
||||
RUN apt-get install -y libxkbfile-dev
|
||||
RUN apt-get install -y bc bsdmainutils
|
||||
RUN apt-get install -y libsecret-1-dev
|
||||
|
||||
# Xvfb
|
||||
# Thanks https://medium.com/@griggheo/running-headless-selenium-webdriver-tests-in-docker-containers-342fdbabf756
|
||||
ADD xvfb.init /etc/init.d/xvfb
|
||||
RUN chmod +x /etc/init.d/xvfb
|
||||
RUN update-rc.d xvfb defaults
|
||||
|
||||
# nvm
|
||||
ENV NVM_DIR /usr/local/nvm
|
||||
RUN curl https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
|
||||
|
||||
CMD (service xvfb start; export DISPLAY=:10; ./start.sh)
|
||||
15
build/tfs/linux/x64/run-agent.sh
Normal file
15
build/tfs/linux/x64/run-agent.sh
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ ! -f pat ]; then
|
||||
echo "Error: file pat not found"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
docker run \
|
||||
-e VSTS_ACCOUNT="monacotools" \
|
||||
-e VSTS_TOKEN="$(cat pat)" \
|
||||
-e VSTS_AGENT="tb-lnx-x64-local" \
|
||||
-e VSTS_POOL="linux-x64" \
|
||||
-e VSTS_WORK="/var/vsts/work" \
|
||||
--name "tb-lnx-x64-local" \
|
||||
-it joaomoreno/vscode-vso-agent-x64:latest
|
||||
53
build/tfs/linux/x64/xvfb.init
Normal file
53
build/tfs/linux/x64/xvfb.init
Normal file
@@ -0,0 +1,53 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# /etc/rc.d/init.d/xvfbd
|
||||
#
|
||||
# chkconfig: 345 95 28
|
||||
# description: Starts/Stops X Virtual Framebuffer server
|
||||
# processname: Xvfb
|
||||
#
|
||||
### BEGIN INIT INFO
|
||||
# Provides: xvfb
|
||||
# Required-Start: $remote_fs $syslog
|
||||
# Required-Stop: $remote_fs $syslog
|
||||
# Default-Start: 2 3 4 5
|
||||
# Default-Stop: 0 1 6
|
||||
# Short-Description: Start xvfb at boot time
|
||||
# Description: Enable xvfb provided by daemon.
|
||||
### END INIT INFO
|
||||
|
||||
[ "${NETWORKING}" = "no" ] && exit 0
|
||||
|
||||
PROG="/usr/bin/Xvfb"
|
||||
PROG_OPTIONS=":10 -ac"
|
||||
PROG_OUTPUT="/tmp/Xvfb.out"
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
echo "Starting : X Virtual Frame Buffer "
|
||||
$PROG $PROG_OPTIONS>>$PROG_OUTPUT 2>&1 &
|
||||
disown -ar
|
||||
;;
|
||||
stop)
|
||||
echo "Shutting down : X Virtual Frame Buffer"
|
||||
killproc $PROG
|
||||
RETVAL=$?
|
||||
[ $RETVAL -eq 0 ] && /bin/rm -f /var/lock/subsys/Xvfb
|
||||
/var/run/Xvfb.pid
|
||||
echo
|
||||
;;
|
||||
restart|reload)
|
||||
$0 stop
|
||||
$0 start
|
||||
RETVAL=$?
|
||||
;;
|
||||
status)
|
||||
status Xvfb
|
||||
RETVAL=$?
|
||||
;;
|
||||
*)
|
||||
echo $"Usage: $0 (start|stop|restart|reload|status)"
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit $RETVAL
|
||||
Reference in New Issue
Block a user