This commit is contained in:
Loic Guegan 2023-01-19 17:04:57 +01:00
parent 415929e6ca
commit 4e3a0d9e8f

View file

@ -2,9 +2,9 @@ archlinux:
stage: test stage: test
image: archlinux:base-devel image: archlinux:base-devel
before_script: before_script:
- pacman -Sy cmake openssh git wxwidgets-gtk3 --noconfirm --needed - pacman -Sy cmake git wxwidgets-gtk3 --noconfirm --needed
script: script:
- git submodule update --init --recursive && mkdir build && cd build && cmake ../ && make - git submodule init && git submodule update --recursive && mkdir build && cd build && cmake ../ && make
artifacts: artifacts:
when: on_failure when: on_failure
paths: paths:
@ -16,7 +16,7 @@ debian:
before_script: before_script:
- apt update && apt -y install cmake git build-essential libwxgtk3.0-gtk3-dev - apt update && apt -y install cmake git build-essential libwxgtk3.0-gtk3-dev
script: script:
- git submodule update --init --recursive && mkdir build && cd build && cmake ../ && make - git submodule init && git submodule update --recursive && mkdir build && cd build && cmake ../ && make
artifacts: artifacts:
when: on_failure when: on_failure
paths: paths: