meta: run ci on non-master branches
This commit is contained in:
parent
3848356000
commit
61e3492433
1 changed files with 6 additions and 7 deletions
|
@ -1,7 +1,3 @@
|
||||||
workflow:
|
|
||||||
rules:
|
|
||||||
- if: $CI_COMMIT_BRANCH == "master"
|
|
||||||
|
|
||||||
build-x86_64: &build
|
build-x86_64: &build
|
||||||
image: registry.git.ptrc.gay/ptrcnull/ptrcports-builder/x86_64:latest
|
image: registry.git.ptrc.gay/ptrcnull/ptrcports-builder/x86_64:latest
|
||||||
cache:
|
cache:
|
||||||
|
@ -22,9 +18,12 @@ build-x86_64: &build
|
||||||
--destdir $PWD/repodest
|
--destdir $PWD/repodest
|
||||||
--purge
|
--purge
|
||||||
ptrcports
|
ptrcports
|
||||||
- rsync --archive --update --hard-links --delete --delete-after --delay-updates --no-o --no-g
|
- |-
|
||||||
repodest/
|
if [ "$CI_COMMIT_BRANCH" = "master" ]; then
|
||||||
buildozer@repo.ptrc.gay:repodest/
|
rsync --archive --update --hard-links --delete --delete-after --delay-updates --no-o --no-g \
|
||||||
|
repodest/ \
|
||||||
|
buildozer@repo.ptrc.gay:repodest/
|
||||||
|
fi
|
||||||
|
|
||||||
build-aarch64:
|
build-aarch64:
|
||||||
<<: *build
|
<<: *build
|
||||||
|
|
Loading…
Reference in a new issue