aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2020-03-24 08:08:50 +0100
committerAndreas Schneider <asn@samba.org>2020-03-24 11:20:03 +0100
commitfbb0f4515f456d851f77eeb6e8f96370d2dc5855 (patch)
tree20f0fd59c2314473d634c201c415c2d25548f2fe
parent3f0088a09ee3bab5d66ac703271a9381e1828017 (diff)
downloadpam_wrapper-fbb0f4515f456d851f77eeb6e8f96370d2dc5855.tar.gz
pam_wrapper-fbb0f4515f456d851f77eeb6e8f96370d2dc5855.tar.xz
pam_wrapper-fbb0f4515f456d851f77eeb6e8f96370d2dc5855.zip
gitlab-ci: Work around a Python 3.8 bug
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
-rw-r--r--.gitlab-ci.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a381629..839c834 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -170,13 +170,15 @@ tumbleweed/x86_64/gcc7:
paths:
- obj/
+# PICKY_DEVELOPER IS OFF
+# => https://github.com/python/cpython/pull/19133
tumbleweed/x86_64/clang:
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$TUMBLEWEED_BUILD
script:
- mkdir -p obj && cd obj && cmake
-DCMAKE_BUILD_TYPE=RelWithDebInfo
-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
- -DPICKY_DEVELOPER=ON
+ -DPICKY_DEVELOPER=OFF
-DUNIT_TESTING=ON .. &&
make -j$(nproc) && ctest --output-on-failure
tags:
@@ -189,6 +191,8 @@ tumbleweed/x86_64/clang:
paths:
- obj/
+# PICKY_DEVELOPER IS OFF
+# => https://github.com/python/cpython/pull/19133
tumbleweed/static-analysis:
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$TUMBLEWEED_BUILD
script:
@@ -197,7 +201,7 @@ tumbleweed/static-analysis:
- mkdir -p obj && cd obj && scan-build cmake
-DCMAKE_BUILD_TYPE=Debug
-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
- -DPICKY_DEVELOPER=ON
+ -DPICKY_DEVELOPER=OFF
-DUNIT_TESTING=ON .. &&
scan-build --status-bugs -o scan make -j$(nproc)
tags: