diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fb5486ce..18e04ea3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ gnome-runtime-linux: - meson _build - ninja -C _build - meson test -C_build --suite pango - - _build/utils/pango-view --output _build/hello.png utils/HELLO.txt + - _build/utils/pango-view --no-display --output _build/hello.png utils/HELLO.txt artifacts: name: "%CI_JOB_NAME%-%CI_COMMIT_REF_NAME%" when: always @@ -43,8 +43,10 @@ msys2-mingw64: script: - C:\msys64\usr\bin\pacman --noconfirm -Syyuu - C:\msys64\usr\bin\bash -lc "bash -x ./.gitlab-ci/test-msys2.sh" + - C:\msys64\usr\bin\bash -lc "bash -x ./.gitlab-ci/render-msys2.sh" artifacts: name: "%CI_JOB_NAME%-%CI_COMMIT_REF_NAME%" when: always paths: - _build/meson-logs + - _build/hello.png |