Create repository

This commit is contained in:
Loic Guegan 2022-02-23 18:11:55 +01:00
commit ce941c146a
127 changed files with 16162 additions and 0 deletions

23
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,23 @@
archlinux:
stage: test
image: archlinux:base-devel
before_script:
- pacman -Sy cmake git wxgtk2 --noconfirm --needed
script:
- git submodule init && git submodule update && 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 init && git submodule update && mkdir build && cd build && cmake ../ && make
artifacts:
when: on_failure
paths:
- build/