summarylogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: fa49e15bb4e1f03471f6ece32f868deafad8bfee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
stages:
  - build

build:
  stage: build
  image: archlinux:base-devel
  script:
    - pacman -Syu --noconfirm
    - useradd builduser -m
    - passwd -d builduser
    - printf 'builduser ALL=(ALL) ALL\n' | tee -a /etc/sudoers
    - sudo -u builduser sh -c "gpg --recv-key EBE41E90F6F12F6D && makepkg -s --noconfirm"
  artifacts:
    paths:
      - firedragon-*.pkg.tar.zst
  timeout: 2h