aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-07-26 09:47:22 +0200
committerToni Uhlig <matzeton@googlemail.com>2023-07-26 09:49:44 +0200
commita6093ed48cad2217ffe22555d1f1403854418dcb (patch)
treea86a45938328e2d7889d1cfeb85a26247bf0eb91 /.gitlab-ci.yml
parent3ce512ab512339db8172e9f86c885b5ffd098a9c (diff)
Fixed CI.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9eb6389..dd9261d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,8 +10,8 @@ cache:
- mingw-w64-sysroot/
- EASTL-build/libEASTL.a
- EASTL-native-build/libEASTL.a
- - CRT/*.o
- - CRT/*.opp
+ - CRT-build/*
+ - CRT-native-build/*
before_script:
- export DEBIAN_FRONTEND=noninteractive
@@ -28,7 +28,10 @@ makedeps:
- >
{ test -x mingw-w64-sysroot/x86_64/bin/x86_64-w64-mingw32-gcc && \
test -x mingw-w64-sysroot/x86_64/bin/x86_64-w64-mingw32-g++ && \
- test -r CRT/kcrt.opp && \
+ test -r CRT-build/libcrt.a && \
+ test -r CRT-build/libcrt.a && \
+ test -r CRT-build/libcxxrt.a && \
+ test -r CRT-build/libusercrt.a && \
test -r EASTL-build/libEASTL.a && \
test -r EASTL-native-build/libEASTL.a; } || \
{ make deps JOBS=${BUILDJOBS:-4} Q= || { cat mingw-w64-sysroot/build.log; false; }; }