mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-19 04:09:41 +00:00
Create repository
This commit is contained in:
commit
ce941c146a
127 changed files with 16162 additions and 0 deletions
23
.gitlab-ci.yml
Normal file
23
.gitlab-ci.yml
Normal 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/
|
Loading…
Add table
Add a link
Reference in a new issue