diff options
-rw-r--r-- | .gitlab-ci.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 60bc5f9..87925f2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -272,3 +272,19 @@ packaging:deb: artifacts: untracked: true name: $CI_PROJECT_NAME-deb-$CI_BUILD_ID + +packaging:archlinux: + stage: packaging + tags: + - docker + image: docker.louiz.org/biboumi-test-archlinux:latest + before_script: [] + script: + - git clone https://aur.archlinux.org/litesql-git.git + - cd litesql-git + - makepkg --noconfirm -s && makepkg -f && sudo pacman --noconfirm -U *.pkg.* + - cd .. + - git clone https://aur.archlinux.org/biboumi-git.git + - cd biboumi-git + - makepkg --noconfirm -s && makepkg -f && sudo pacman --noconfirm -U *.pkg.* + dependencies: [] |