aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 8c1f58f347c70fb5989ab0dc9983bb1c2433c41a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
archlinux:
  stage: test
  image: archlinux:base-devel
  before_script:
    - pacman -Sy cmake openssh git wxwidgets-gtk3 --noconfirm --needed
  script:
    - git submodule update --init --recursive && mkdir build && cd build && cmake ../ && make
  artifacts:
    when: on_failure
    paths:
    - build/

debian:
  stage: test
  image: debian:stable
  before_script:
    - apt update && apt -y install cmake git build-essential libwxgtk3.0-gtk3-dev
  script:
    - git submodule update --init --recursive && mkdir build && cd build && cmake ../ && make
  artifacts:
    when: on_failure
    paths:
    - build/