Separate script for travis deployment.
Check status after each command call. Travis has habit to silent errors in the python script.
(cherry picked from commit 2efe887cad
)
This commit is contained in:
parent
68990ef5b4
commit
de5c6d4f70
13
.travis.yml
13
.travis.yml
|
@ -136,14 +136,5 @@ notifications:
|
|||
on_success: change
|
||||
on_failure: always
|
||||
after_success:
|
||||
- |
|
||||
if [[ "$DEPLOY" == "true" ]]; then
|
||||
../scripts/macfixqtdylibrpath.py $TRAVIS_BUILD_DIR/build/src/app/valentina/bin/Valentina.app;
|
||||
if [[ "$LEGACY" = false ]]; then
|
||||
tar -C $TRAVIS_BUILD_DIR/build/src/app/valentina/bin --exclude "*.DS_Store" -cvzf valentina-osx-${TRAVIS_COMMIT}.tar.gz Valentina.app/;
|
||||
python3 $TRAVIS_BUILD_DIR/scripts/deploy.py upload $ACCESS_TOKEN $TRAVIS_BUILD_DIR/build/valentina-osx-${TRAVIS_COMMIT}.tar.gz "/0.7.x/Mac OS X/valentina-osx-${TRAVIS_COMMIT}.tar.xz";
|
||||
else
|
||||
tar -C $TRAVIS_BUILD_DIR/build/src/app/valentina/bin --exclude "*.DS_Store" -cvzf valentina-osx-${TRAVIS_COMMIT}-legacy.tar.gz Valentina.app/;
|
||||
python3 $TRAVIS_BUILD_DIR/scripts/deploy.py upload $ACCESS_TOKEN $TRAVIS_BUILD_DIR/build/valentina-osx-${TRAVIS_COMMIT}-legacy.tar.gz "/0.7.x/Mac OS X/valentina-osx-${TRAVIS_COMMIT}-legacy.tar.xz";
|
||||
fi
|
||||
fi
|
||||
- ../scripts/travis-deploy.sh
|
||||
|
||||
|
|
43
scripts/travis-deploy.sh
Normal file
43
scripts/travis-deploy.sh
Normal file
|
@ -0,0 +1,43 @@
|
|||
print_error() {
|
||||
echo "[CI] ERROR: $1"
|
||||
}
|
||||
|
||||
|
||||
print_info() {
|
||||
echo "[CI] INFO: $1"
|
||||
}
|
||||
|
||||
|
||||
check_failure() {
|
||||
if [ $? -ne 0 ] ; then
|
||||
if [ -z $1 ] ; then
|
||||
print_error $1
|
||||
else
|
||||
print_error "Failure exit code is detected."
|
||||
fi
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
if [[ "$DEPLOY" == "true" ]]; then
|
||||
../scripts/macfixqtdylibrpath.py $TRAVIS_BUILD_DIR/build/src/app/valentina/bin/Valentina.app;
|
||||
check_failure "Unable to patch the app bundle.";
|
||||
|
||||
if [[ "$LEGACY" = false ]]; then
|
||||
legacy_suffix = ""
|
||||
else
|
||||
legacy_suffix = "-legacy"
|
||||
fi
|
||||
|
||||
print_info "Start compressing.";
|
||||
tar -C $TRAVIS_BUILD_DIR/build/src/app/valentina/bin --exclude "*.DS_Store" -cvJf valentina-osx-${TRAVIS_COMMIT}${legacy_suffix}.tar.xz Valentina.app/;
|
||||
check_failure "Unable to create an archive.";
|
||||
|
||||
print_info "Start uploading.";
|
||||
python3 $TRAVIS_BUILD_DIR/scripts/deploy.py upload $ACCESS_TOKEN $TRAVIS_BUILD_DIR/build/valentina-osx-${TRAVIS_COMMIT}${legacy_suffix}.tar.xz "/0.7.x/Mac OS X/valentina-osx-${TRAVIS_COMMIT}${legacy_suffix}.tar.xz";
|
||||
check_failure "Unable to upload.";
|
||||
|
||||
print_info "Successfully uploaded.";
|
||||
else
|
||||
print_info "No deployment needed.";
|
||||
fi
|
Loading…
Reference in New Issue
Block a user