Browse Source

CI: Disable deploy on Travis, add Win32 builds to appveyor.

pull/3202/head
TheGoddessInari 7 years ago
parent
commit
24c1a82d27
  1. 24
      .travis.yml
  2. 4
      appveyor.yml

24
.travis.yml

@ -61,18 +61,18 @@ script:
- sencha audit
- npm run setup:${TRAVIS_OS_NAME}
after_success:
- git config --global user.email "travis@travis-ci.org"
- git config --global user.name "Travis"
- if [ ${CURRENT_BRANCH} == "testing" ]; then
export TRAVIS_TAG="snapshot-testing";
git tag -f ${TRAVIS_TAG} -a -m "Automatic snapshot for testing [skip ci]";
(git push -q https://${TAGPERM}@github.com/TheGoddessInari/rambox --tags -f) > /dev/null 2>&1;
elif [ ${CURRENT_BRANCH} == "master" ]; then
export TRAVIS_TAG="snapshot-master";
git tag -f ${TRAVIS_TAG} -a -m "Automatic snapshot for master [skip ci]";
(git push -q https://${TAGPERM}@github.com/TheGoddessInari/rambox --tags -f) > /dev/null 2>&1;
fi
# after_success:
# - git config --global user.email "travis@travis-ci.org"
# - git config --global user.name "Travis"
# - if [ ${CURRENT_BRANCH} == "testing" ]; then
# export TRAVIS_TAG="snapshot-testing";
# git tag -f ${TRAVIS_TAG} -a -m "Automatic snapshot for testing [skip ci]";
# (git push -q https://${TAGPERM}@github.com/TheGoddessInari/rambox --tags -f) > /dev/null 2>&1;
# elif [ ${CURRENT_BRANCH} == "master" ]; then
# export TRAVIS_TAG="snapshot-master";
# git tag -f ${TRAVIS_TAG} -a -m "Automatic snapshot for master [skip ci]";
# (git push -q https://${TAGPERM}@github.com/TheGoddessInari/rambox --tags -f) > /dev/null 2>&1;
# fi
# deploy:
# - provider: releases # Snapshot tags

4
appveyor.yml

@ -3,8 +3,7 @@ image:
- Visual Studio 2017
- Ubuntu
environment:
matrix:
- nodejs_version: '10'
nodejs_version: '10'
JAVA_HOME: C:\Program Files\Java\jdk1.8.0
npm_config_loglevel: 'error'
SENCHA_VER: '6.6.0.13'
@ -89,6 +88,7 @@ build_script:
test: off
artifacts:
- path: dist\squirrel-windows\*.exe
- path: dist\squirrel-windows-ia32\*.exe
- path: dist/*.AppImage
- path: dist/*.rpm
- path: dist/*.deb

Loading…
Cancel
Save