mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-05-17 11:19:13 +00:00
checkupdates: drop updates to files that where changed in the repo
This allows the fdroiddata maintainers to commit changes and checkupdates will drop changes to the affected files and only push the remaining commits.
This commit is contained in:
parent
0a2e9a2fd8
commit
fa289579cb
1 changed files with 1 additions and 2 deletions
|
|
@ -337,9 +337,8 @@ checkupdates_runner:
|
|||
- echo "${#CHECKUPDATES_APPIDS[@]}"
|
||||
|
||||
- fdroid checkupdates --allow-dirty --auto --commit "${CHECKUPDATES_APPIDS[@]}" 2>&1 | tee /tmp/out || true
|
||||
- git pull --rebase origin master
|
||||
# when two jobs try to push at the same time they occasionally fail, so try it again
|
||||
- while ! git push origin HEAD:master; do git pull --rebase origin master; done
|
||||
- while ! git push origin HEAD:master; do git pull --rebase --strategy-option=ours origin master; done
|
||||
- echo "============== Summary ====================="
|
||||
- 'grep -v "INFO: Processing" /tmp/out || true'
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue