update .woodpecker.yml
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful

This commit is contained in:
Christian Zimmermann 2024-05-20 14:56:13 +02:00
parent 27cc11773d
commit b76cf9ac2e

View file

@ -1,9 +1,15 @@
--- ---
labels:
hostname: ci-runner.server10.kruton.de
steps: steps:
build: build:
image: chizeta/centos:8 image: chizeta/centos:8
pull: true pull: true
when:
branch: [main, dev]
event: [push, pull_request]
commands: commands:
- source /opt/rh/gcc-toolset-9/enable - source /opt/rh/gcc-toolset-9/enable
- source /etc/profile.d/modules.sh - source /etc/profile.d/modules.sh
@ -20,6 +26,7 @@ steps:
- cd .. - cd ..
- mkdir build-clang - mkdir build-clang
- cd build-clang - cd build-clang
- CC=/usr/bin/clang CXX=/usr/bin/clang++ cmake3 -DRUN_PIPELINE=on -DSCALAR_BUILD=on .. - CC=/usr/bin/clang CXX=/usr/bin/clang++ cmake3 -DSCALAR_BUILD=on ..
- make -j2 - make -j2
- make test - make test
- cat /woodpecker/src/git.f3l.de/chizeta/cnorxz/build-clang/Testing/Temporary/LastTest.log