remove .gitlab-ci.yml
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Christian Zimmermann 2023-12-29 15:20:02 +01:00
parent 6857e3fc7d
commit 5a75c7964f

View file

@ -1,21 +0,0 @@
image: docker.io/chizeta/centos:8
stages:
- build
build-centos:
stage: build
script:
- 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