testing "deploy:pacman" job

This commit is contained in:
Oscar Krause 2022-12-28 21:53:11 +01:00
parent eddf9217e5
commit 478dc04787
1 changed files with 5 additions and 7 deletions

View File

@ -43,8 +43,6 @@ build:apt:
build:pacman: build:pacman:
image: archlinux:base-devel image: archlinux:base-devel
stage: build stage: build
rules:
- if: $CI_COMMIT_BRANCH == "archlinux-makepkg"
before_script: before_script:
- pacman -Syu --noconfirm git - pacman -Syu --noconfirm git
# "makepkg" don't likes root user # "makepkg" don't likes root user
@ -195,11 +193,11 @@ deploy:apt:
deploy:pacman: deploy:pacman:
image: archlinux:base-devel image: archlinux:base-devel
stage: deploy stage: deploy
rules: # rules:
#- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH # - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
- changes: # - changes:
- .PKGBUILD/**/* # - .PKGBUILD/**/*
- app/**/* # - app/**/*
needs: needs:
- job: build:pacman - job: build:pacman
artifacts: true artifacts: true