From 2106d5b79222da08e2df005e46fb8b912c099ac5 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 15 Mar 2019 09:33:49 -0400 Subject: [PATCH] make docker stubs from CI --- appveyor.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 54018a757..64af69932 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -20,11 +20,14 @@ init: install: - ps: | + $env:STUB_CORE_VER = "dev" + $env:STUB_WEB_VER = "dev" $env:PROD_DEPLOY = "false" $env:TAG_NAME = "" if($env:APPVEYOR_REPO_TAG -eq "true" -and $env:APPVEYOR_RE_BUILD -eq "True") { $env:PROD_DEPLOY = "true" $env:TAG_NAME = $env:APPVEYOR_REPO_TAG_NAME.TrimStart("v") + $env:STUB_CORE_VER = $env:TAG_NAME echo "This is a production deployment for ${env:TAG_NAME}." } if($isLinux) { @@ -82,6 +85,15 @@ build_script: $env:swaggerGen = "" Push-AppveyorArtifact .\swagger.json } +sh: | + echo "Make docker stubs" + mkdir stub + docker run -it --rm --name setup -v stub:/bitwarden bitwarden/setup:$STUB_CORE_VER \ + dotnet Setup.dll -stub 1 -install 1 -domain bitwarden.company.com -os lin \ + -corev $STUB_CORE_VER -webv $STUB_WEB_VER + cd stub + ls + after_build: - sh: docker logout