mirror of
https://github.com/leozide/leocad
synced 2025-01-29 20:34:50 +01:00
Check if there were any commits since this build started before uploading. (#327)
This commit is contained in:
parent
482a51df77
commit
f59d3e6e72
1 changed files with 7 additions and 0 deletions
|
@ -73,6 +73,13 @@ script:
|
|||
|
||||
after_success:
|
||||
- |
|
||||
GREP_PATH=grep;
|
||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then GREP_PATH=ggrep; fi
|
||||
curl -H "Authorization: token $GITHUB_TOKEN" https://api.github.com/repos/leozide/leocad/commits/master;
|
||||
curl -s -H "Authorization: token $GITHUB_TOKEN" https://api.github.com/repos/leozide/leocad/commits/master -o repo.txt;
|
||||
REMOTE=$($GREP_PATH -Po '(?<=: \")(([a-z0-9])\w+)(?=\")' -m 1 repo.txt);
|
||||
LOCAL=$(git rev-parse HEAD);
|
||||
if [[ "$REMOTE" != "$LOCAL" ]]; then echo "Build no longer current. $REMOTE vs $LOCAL - aborting upload."; exit 0; fi;
|
||||
if [[ "$QT_BASE" = "510" && "$TRAVIS_OS_NAME" = "linux" ]]; then
|
||||
wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
|
||||
bash upload.sh LeoCAD*.AppImage*
|
||||
|
|
Loading…
Add table
Reference in a new issue