diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2023-01-19 16:53:09 +0100 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2023-01-19 16:53:09 +0100 |
| commit | 415929e6ca11508e56a538605479cf5faba4155a (patch) | |
| tree | e5d1f19b2fbb2fedc87322f22b21c6c1465cb628 | |
| parent | a2e3522116563c3d35e07cf00cdc6db4be0e44fa (diff) | |
Debug CI
| -rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 63700a9..8c1f58f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,9 +2,9 @@ archlinux: stage: test image: archlinux:base-devel before_script: - - pacman -Sy cmake git wxwidgets-gtk3 --noconfirm --needed + - pacman -Sy cmake openssh git wxwidgets-gtk3 --noconfirm --needed script: - - git submodule init && git submodule update && mkdir build && cd build && cmake ../ && make + - git submodule update --init --recursive && mkdir build && cd build && cmake ../ && make artifacts: when: on_failure paths: @@ -16,7 +16,7 @@ debian: 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 + - git submodule update --init --recursive && mkdir build && cd build && cmake ../ && make artifacts: when: on_failure paths: |
