Update appveyor build script to fix use of git submodule --quiet

This commit is contained in:
Ben Gotow 2020-02-24 13:53:45 -06:00
parent a0a9edb1b2
commit 36ff724805

View file

@ -7,27 +7,27 @@ branches:
- /stable.*/ - /stable.*/
init: init:
- ps: $env:commit = $env:appveyor_repo_commit.SubString(0,8) - ps: $env:commit = $env:appveyor_repo_commit.SubString(0,8)
install: install:
- ps: Install-Product node $env:NODE_VERSION - ps: Install-Product node $env:NODE_VERSION
- ps: npm config set msvs_version 2015 - ps: npm config set msvs_version 2015
# Extract the codesigning certs, encrypted private ssh key # Extract the codesigning certs, encrypted private ssh key
- ps: | - ps: |
C:\OpenSSL-Win32\bin\openssl.exe aes-256-cbc -K $env:encrypted_faf2708e46e2_key -iv $env:encrypted_faf2708e46e2_iv -in app/build/resources/certs.tar.enc -out app/build/resources/certs.tar -d; C:\OpenSSL-Win32\bin\openssl.exe aes-256-cbc -K $env:encrypted_faf2708e46e2_key -iv $env:encrypted_faf2708e46e2_iv -in app/build/resources/certs.tar.enc -out app/build/resources/certs.tar -d;
mkdir app/build/resources/certs; mkdir app/build/resources/certs;
tar xvf app/build/resources/certs.tar --directory=app/build/resources/; tar xvf app/build/resources/certs.tar --directory=app/build/resources/;
# Clone the submodule # Clone the submodule
- ps: | - ps: |
$env:GIT_SSH_COMMAND="ssh -q -i app/build/resources/certs/mailsync-deploy-key -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"; $env:GIT_SSH_COMMAND="ssh -q -i app/build/resources/certs/mailsync-deploy-key -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no";
git submodule update --init mailsync --quiet *>$null git submodule --quiet update --init mailsync *>$null
build_script: build_script:
- cmd: cd .\mailsync && .\build.cmd && cd ..\ - cmd: cd .\mailsync && .\build.cmd && cd ..\
- cmd: npm install && npm run build - cmd: npm install && npm run build
- cmd: node app/build/create-signed-windows-installer.js - cmd: node app/build/create-signed-windows-installer.js
before_deploy: before_deploy:
- cmd: 7z -ttar a dummy %APPVEYOR_BUILD_FOLDER%\app\dist\*.dll %APPVEYOR_BUILD_FOLDER%\app\dist\mailsync.exe -so | 7z -si -tgzip a .\app\dist\mailsync.tar.gz - cmd: 7z -ttar a dummy %APPVEYOR_BUILD_FOLDER%\app\dist\*.dll %APPVEYOR_BUILD_FOLDER%\app\dist\mailsync.exe -so | 7z -si -tgzip a .\app\dist\mailsync.tar.gz
@ -37,14 +37,14 @@ before_deploy:
- ps: Get-ChildItem .\app\dist\RELEASES | % { Push-AppveyorArtifact $_.FullName -FileName "win-ia32/$($_.Name)" -DeploymentName s3-deployment } - ps: Get-ChildItem .\app\dist\RELEASES | % { Push-AppveyorArtifact $_.FullName -FileName "win-ia32/$($_.Name)" -DeploymentName s3-deployment }
deploy: deploy:
- provider: S3 - provider: S3
name: s3-deployment name: s3-deployment
access_key_id: AKIAJQWOM4SPSY3TXI5Q access_key_id: AKIAJQWOM4SPSY3TXI5Q
secret_access_key: secret_access_key:
secure: XlLzz7sdvrtgi4g459NvxLfrH/+hOutb+0Osz29unfi4Zcw9N8H8SEaq6m3ZeWc+ secure: XlLzz7sdvrtgi4g459NvxLfrH/+hOutb+0Osz29unfi4Zcw9N8H8SEaq6m3ZeWc+
region: us-east-1 region: us-east-1
bucket: mailspring-builds bucket: mailspring-builds
folder: "client/$(commit)" folder: 'client/$(commit)'
set_public: true set_public: true
# Stop Appveyor from "Discovering Tests" forever # Stop Appveyor from "Discovering Tests" forever