Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cheton committed Feb 3, 2018
1 parent a168788 commit dececa6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ after_success:
- COMMIT_LOG=`git log -1 --format='%ci %H %s'`
- |
# build:mac-x64
if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_NODE_VERSION" == "8" && "$TRAVIS_OS_NAME" == "osx" ]]; then
if [[ "$TRAVIS_NODE_VERSION" == "8" && "$TRAVIS_OS_NAME" == "osx" ]]; then
# https://github.com/electron-userland/electron-builder/issues/398
security import "scripts/certs/Certum-Code-Signing-CA-SHA2.cer" -k ~/Library/Keychains/login.keychain -T /usr/bin/codesign;
# https://github.com/electron-userland/electron-osx-sign/issues/83
Expand Down Expand Up @@ -110,7 +110,7 @@ after_success:
fi
- |
# build:linux-ia32
if [[ "$TRAVIS_BRANCH" = "master" && "$TRAVIS_NODE_VERSION" == "8" && "$TRAVIS_OS_NAME" == "linux" ]]; then
if [[ "$TRAVIS_NODE_VERSION" == "8" && "$TRAVIS_OS_NAME" == "linux" ]]; then
npm run build:linux-ia32;
ls -al output output/*;
cp -af "output/${PACKAGE_NAME}-${PACKAGE_VERSION}-i386.AppImage" "releases/${RELEASE}-linux-i386.AppImage";
Expand Down Expand Up @@ -143,7 +143,7 @@ after_success:
fi
- |
# build:linux-x64
if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_NODE_VERSION" == "8" && "$TRAVIS_OS_NAME" == "linux" ]]; then
if [[ "$TRAVIS_NODE_VERSION" == "8" && "$TRAVIS_OS_NAME" == "linux" ]]; then
npm run build:linux-x64;
ls -al output output/*;
cp -af "output/${PACKAGE_NAME}-${PACKAGE_VERSION}-x86_64.AppImage" "releases/${RELEASE}-linux-x86_64.AppImage";
Expand Down Expand Up @@ -176,7 +176,7 @@ after_success:
fi
- |
# docker image
if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_NODE_VERSION" == "6" && "$TRAVIS_OS_NAME" == "linux" ]]; then
if [[ "$TRAVIS_NODE_VERSION" == "6" && "$TRAVIS_OS_NAME" == "linux" ]]; then
travis_wait scripts/travis-docker-build.sh;
fi
Expand Down

0 comments on commit dececa6

Please sign in to comment.