summarylogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorJan Kohnert2022-07-17 15:06:16 +0000
committerJan Kohnert2022-07-17 15:06:16 +0000
commit845b16d5ac7a6f35455a1cdaf4001f245f247b4e (patch)
treebc468bc4a1f876c223e03d63c859ec918bdae43b /.gitlab-ci.yml
parentc661345c0e3e43aa296cabe5ca2c587223b6f87c (diff)
downloadaur-845b16d5ac7a6f35455a1cdaf4001f245f247b4e.tar.gz
Changed dependency wxgtk2 to wxgtk3 (as stated in CMakeFiles.txt, too).
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml15
1 files changed, 11 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index acf545460c8e..5c82c98a91c7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,6 +10,7 @@ variables:
stages:
- containerize
+ - extract
- build
- test
- deploy
@@ -18,16 +19,22 @@ container-build-and-test:
extends: .arch-containerize
needs: []
+extract-gnudatalanguage:
+ extends: .arch-extract-only
+ needs:
+ - job: "container-build-and-test"
+ artifacts: no
+
build-gnudatalanguage:
artifacts:
paths:
- $PKG_NAME*.pkg.tar.zst
- src/gdl-*/build/Testing/Temporary/LastTest.log
when: always
- extends: .arch-buildx
- needs:
- - job: "container-build-and-test"
- artifacts: no
+ before_script:
+ - sed -i "s/^tolerance=0.01/tolerance=${TOLERANCE:-0.01}/" src/gdl-*/testsuite/test_tic_toc.pro
+ extends: .arch-buildx-only
+ needs: ["extract-gnudatalanguage"]
test-gnudatalanguage:
extends: .arch-test