Add initial arm specific cibuild script

This commit is contained in:
Kevin Sawicki 2016-11-29 15:41:23 -08:00
parent 2c8ab72269
commit 9904da9a48
4 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
export TARGET_ARCH=arm
script/cibuild-linux

View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
export TARGET_ARCH=ia32
script/cibuild-linux

View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
export TARGET_ARCH=x64
script/cibuild-linux

17
script/cibuild-linux Executable file
View file

@ -0,0 +1,17 @@
#!/usr/bin/env bash
MESSAGE="$(git log --format=%B -n 1 HEAD)"
case ${MESSAGE} in
Bump* ) export ELECTRON_RELEASE=1 ;;
esac
set +x
export ELECTRON_GITHUB_TOKEN="$BUILD_ELECTRON_ELECTRON_GITHUB_TOKEN"
export ELECTRON_S3_ACCESS_KEY="$BUILD_ELECTRON_ELECTRON_S3_ACCESS_KEY"
export ELECTRON_S3_SECRET_KEY="$BUILD_ELECTRON_ELECTRON_S3_SECRET_KEY"
set -x
export ELECTRON_S3_BUCKET="$BUILD_ELECTRON_ELECTRON_S3_BUCKET"
script/cibuild