mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* Update gulpfile.reh.js * Update YAML files * Bump distro * Fix yaml file * Another yaml typo * Disable web publish step * Update the build scripts * YAML update * Update distro * Update yaml * Increase step timeout * Add comment for disabled code block * Temp disable component detection task * Renable comp gov teask * Bump distro * Update build scripts * Fix typo * Fix docker path * Bump linux build timeout * Change file name
14 lines
440 B
Bash
Executable File
14 lines
440 B
Bash
Executable File
set -e
|
|
REPO="$(pwd)"
|
|
ROOT="$REPO/.."
|
|
|
|
PLATFORM_LINUX="linux-x64"
|
|
SERVER_BUILD_NAME="azuredatastudio-server-$PLATFORM_LINUX"
|
|
|
|
# create docker
|
|
mkdir -p $REPO/.build/docker
|
|
docker build -t azuredatastudio-server -f $REPO/build/azure-pipelines/docker/Dockerfile $ROOT/$SERVER_BUILD_NAME-web
|
|
docker save azuredatastudio-server | gzip > $REPO/.build/docker/azuredatastudio-server-docker.tar.gz
|
|
|
|
node build/azure-pipelines/common/copyArtifacts.js
|