summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 285774fa91745da8f7e6f46eeb201b56578fdad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
image: archlinux:latest

stages:
 - build
 - deploy

build:
  stage: build
  script:
      - pacman --noconfirm -Sy gcc meson ninja pkg-config doxygen graphviz texlive-bin xorgproto
      - ./test/gitlab-ci.sh
  artifacts:
    paths:
      - public

pages:
  stage: deploy
  script:
    - echo "Nothing to do"
  artifacts:
    paths:
      - public
  only:
   - master