Run with all the variations - still not finding linux build artifacts

This commit is contained in:
Ben Gotow 2017-08-11 09:20:46 -07:00
parent 7039e39b1f
commit 4eac3f1604
2 changed files with 12 additions and 5 deletions

View file

@ -26,9 +26,9 @@ build_script:
- cmd: node app/build/create-signed-windows-installer.js - cmd: node app/build/create-signed-windows-installer.js
artifacts: artifacts:
- path: dist/merani-win32-ia32/MeraniSetup.exe - path: dist/MeraniSetup.exe
- path: dist/merani-win32-ia32/RELEASES - path: dist/RELEASES
- path: dist/merani-win32-ia32/*.nupkg - path: dist/*.nupkg
deploy: deploy:
- provider: S3 - provider: S3

View file

@ -9,11 +9,18 @@ addons:
artifacts: artifacts:
working_dir: app/dist working_dir: app/dist
target_paths: client/${TRAVIS_COMMIT:0:8}/${TRAVIS_OS_NAME} target_paths: client/${TRAVIS_COMMIT:0:8}/${TRAVIS_OS_NAME}
permissions: public-read
paths: paths:
- Merani.dmg - Merani.dmg
- Merani.zip - Merani.zip
- $(ls . | grep .deb | tr "\n" ":") - $(find . -type f -name *.deb | tr "\n" ":")
- $(ls ./rpm | grep .rpm | tr "\n" ":") - $(find . -type f -name *.rpm | tr "\n" ":")
- (find . -type f -name *.deb | tr "\n" ":")
- (find . -type f -name *.rpm | tr "\n" ":")
- $(cd ./app/dist && find . -type f -name *.deb | tr "\n" ":")
- $(cd ./app/dist && find . -type f -name *.rpm | tr "\n" ":")
- (cd ./app/dist && find . -type f -name *.deb | tr "\n" ":")
- (cd ./app/dist && find . -type f -name *.rpm | tr "\n" ":")
apt: apt:
sources: sources:
- ubuntu-toolchain-r-test - ubuntu-toolchain-r-test