cnorxz/.woodpecker.yml
Christian Zimmermann b76cf9ac2e
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
update .woodpecker.yml
2024-05-20 14:56:13 +02:00

32 lines
1 KiB
YAML

---
labels:
hostname: ci-runner.server10.kruton.de
steps:
build:
image: chizeta/centos:8
pull: true
when:
branch: [main, dev]
event: [push, pull_request]
commands:
- source /opt/rh/gcc-toolset-9/enable
- source /etc/profile.d/modules.sh
- module use --append /usr/share/modulefiles
- module load mpi
- chown -R test:test .
- su test
- mkdir build-gcc
- cd build-gcc
- cmake3 -DSCALAR_BUILD=on ..
- make -j2
- make test
- cat /woodpecker/src/git.f3l.de/chizeta/cnorxz/build-gcc/Testing/Temporary/LastTest.log
- cd ..
- mkdir build-clang
- cd build-clang
- CC=/usr/bin/clang CXX=/usr/bin/clang++ cmake3 -DSCALAR_BUILD=on ..
- make -j2
- make test
- cat /woodpecker/src/git.f3l.de/chizeta/cnorxz/build-clang/Testing/Temporary/LastTest.log