remove tabs in .woodpecker.yml
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Christian Zimmermann 2023-08-31 12:15:45 +02:00
parent 9d9180fdcb
commit b5be793548

View file

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