mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2024-12-04 16:28:00 +01:00
566d8d9cd3
Builds with clang-tidy and runs tests.
10 lines
361 B
YAML
10 lines
361 B
YAML
test:
|
|
image: debian:bookworm
|
|
before_script:
|
|
- apt-get -y update && apt-get -y install build-essential clang-tidy xvfb libcmocka-dev ninja-build cmake liballegro5-dev
|
|
- echo "pcm.!default { type null }" > /etc/asound.conf
|
|
script:
|
|
- mkdir build && cd build
|
|
- cmake .. -GNinja -DUSE_CLANG_TIDY=ON
|
|
- ninja
|
|
- xvfb-run test/engine-tests
|