summarylogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: a403926584e4e187793fa735ac092194a0dbbc51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
image: "registry.devseed.de/all-the-things/docker-archlinux"

test:makepkg:
  script:
    # Test building a source package
    - sudo -u builder makepkg -C -S --log --noconfirm
    # Test building and installing the package
    - sudo -u builder makepkg -C -i --log --noconfirm

      #curl --silent "https://api.github.com/repos/$1/releases/latest" | # Get latest release from GitHub api
      #grep '"tag_name":' |                                            # Get tag line
      #sed -E 's/.*"([^"]+)".*/\1/'