.gitlab-ci.yml 374 Bytes
Newer Older
Aaron Plattner's avatar
Aaron Plattner committed
1
image: archlinux/base:latest
Aaron Plattner's avatar
Aaron Plattner committed
2

Aaron Plattner's avatar
Aaron Plattner committed
3
4
5
stages:
 - build
 - deploy
Aaron Plattner's avatar
Aaron Plattner committed
6

Aaron Plattner's avatar
Aaron Plattner committed
7
8
9
build:
  stage: build
  script:
10
      - pacman --noconfirm -Sy gcc meson ninja pkg-config doxygen graphviz texlive-bin xorgproto
Aaron Plattner's avatar
Aaron Plattner committed
11
12
13
14
15
16
17
18
19
20
21
22
23
24
      - ./test/gitlab-ci.sh
  artifacts:
    paths:
      - public

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