cnorxz/.woodpecker.yml
Christian Zimmermann c2906f962b
Some checks failed
ci/woodpecker/manual/woodpecker Pipeline failed
.woodpecker.yml: try fix
2024-05-18 18:09:10 +02:00

20 lines
583 B
YAML

---
steps:
build:
image: chizeta/centos:8
commands:
- source /opt/rh/gcc-toolset-9/enable
- module use --append /usr/share/modulefiles
- module load mpi
- mkdir build-gcc
- cd build-gcc
- cmake3 -DSCALAR_BUILD=on ..
- make -j2
- make test
- cd ..
- mkdir build-clang
- cd build-clang
- CC=/usr/bin/clang CXX=/usr/bin/clang++ cmake3 -DRUN_PIPELINE=on -DSCALAR_BUILD=on ..
- make -j2
- make test