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
|
||||
image: registry.git.ptrc.gay/ptrcnull/ptrcports-builder/x86_64:latest
|
||||
cache:
|
||||
|
@ -22,9 +18,12 @@ build-x86_64: &build
|
|||
--destdir $PWD/repodest
|
||||
--purge
|
||||
ptrcports
|
||||
- rsync --archive --update --hard-links --delete --delete-after --delay-updates --no-o --no-g
|
||||
repodest/
|
||||
- |-
|
||||
if [ "$CI_COMMIT_BRANCH" = "master" ]; then
|
||||
rsync --archive --update --hard-links --delete --delete-after --delay-updates --no-o --no-g \
|
||||
repodest/ \
|
||||
buildozer@repo.ptrc.gay:repodest/
|
||||
fi
|
||||
|
||||
build-aarch64:
|
||||
<<: *build
|
||||
|
|
Loading…
Reference in a new issue