cnorxz/.woodpecker.yml
Christian Zimmermann b5be793548
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
remove tabs in .woodpecker.yml
2023-08-31 12:15:45 +02:00

18 lines
442 B
YAML

---
steps:
build:
image: chizeta/centos:8
commands:
- source /opt/rh/gcc-toolset-9/enable
- mkdir build-gcc
- cd build-gcc
- cmake3 ..
- make -j2
- make test
- cd ..
- mkdir build-clang
- cd build-clang
- CC=/usr/bin/clang CXX=/usr/bin/clang++ cmake3 ..
- make -j2
- make test