aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2023-01-19 17:14:02 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2023-01-19 17:14:02 +0100
commit1eca34d0ef74ba17178728f0e75bd2504af463ee (patch)
treee25ff46e02e0233024d961ce8a05f76dc9690513 /.gitlab-ci.yml
parent4e3a0d9e8f7d2241e44e0d9614a63f79cacef8a6 (diff)
Debug CI
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c440333..da5493a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,7 +4,9 @@ archlinux:
before_script:
- pacman -Sy cmake git wxwidgets-gtk3 --noconfirm --needed
script:
- - git submodule init && git submodule update --recursive && mkdir build && cd build && cmake ../ && make
+ - git submodule init && git submodule update --recursive
+ - git submodule foreach --recursive git submodule update --init
+ - mkdir build && cd build && cmake ../ && make
artifacts:
when: on_failure
paths:
@@ -16,7 +18,9 @@ debian:
before_script:
- apt update && apt -y install cmake git build-essential libwxgtk3.0-gtk3-dev
script:
- - git submodule init && git submodule update --recursive && mkdir build && cd build && cmake ../ && make
+ - git submodule init && git submodule update --recursive
+ - git submodule foreach --recursive git submodule update --init
+ - mkdir build && cd build && cmake ../ && make
artifacts:
when: on_failure
paths: