ci: fix silly mistake
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
light7734 2025-09-21 14:11:58 +03:30
parent 3800c62827
commit 57eb9797ca
Signed by: light7734
GPG key ID: 8C30176798F1A6BA
5 changed files with 7 additions and 3 deletions

View file

@ -6,9 +6,9 @@ rm -rf ./build
mkdir build/ && cd build
Xvfb :99 -screen 0 1024x768x16 &
export DISPLAY=:99
export CXX=$(which clang++)
export CC=$(which clang)
export DISPLAY=:99
cmake .. \
-G Ninja \

View file

@ -3,11 +3,12 @@
set -e
cd $(git rev-parse --show-toplevel)/
rm -rf ./build
Xvfb :99 -screen 0 1024x768x16 &
mkdir build/ && cd build
export DISPLAY=:99
Xvfb :99 -screen 0 1024x768x16 &
export CXX=$(which clang++)
export CC=$(which clang)
export DISPLAY=:99
cmake .. \
-G Ninja \

View file

@ -3,6 +3,7 @@
set -e
cd $(git rev-parse --show-toplevel)/
rm -rf ./build
mkdir build/ && cd build
Xvfb :99 -screen 0 1024x768x16 &
export CXX=$(which clang++)

View file

@ -3,6 +3,7 @@
set -e
cd $(git rev-parse --show-toplevel)/
rm -rf ./build
mkdir build/ && cd build
Xvfb :99 -screen 0 1024x768x16 &
export CXX=$(which g++)

View file

@ -5,6 +5,7 @@ export DEBUGINFOD_URLS="https://debuginfod.archlinux.org/"
set -e
cd $(git rev-parse --show-toplevel)/
rm -rf ./build
mkdir build/ && cd build
Xvfb :99 -screen 0 1024x768x16 &
export CXX=$(which g++)