This commit is contained in:
parent
d987737610
commit
fc17b70b7f
2 changed files with 7 additions and 3 deletions
|
@ -15,9 +15,8 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
apt update
|
apt update
|
||||||
apt install -y gcc gcc-multilib g++ g++-multilib \
|
apt install -y gcc gcc-multilib g++ g++-multilib \
|
||||||
python3 pipx python3-pip python3-setuptools python3-wheel ninja-build
|
python3 pipx python3-pip python3-setuptools python3-wheel \
|
||||||
PATH="$PATH:/$HOME/.local/bin"
|
ninja-build meson
|
||||||
pipx install meson
|
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: ./build-matrix.sh
|
run: ./build-matrix.sh
|
||||||
|
|
|
@ -36,6 +36,11 @@ BRANCHES=(
|
||||||
ROOT=$(pwd)
|
ROOT=$(pwd)
|
||||||
HL2SDK="$ROOT/include/hl2sdk"
|
HL2SDK="$ROOT/include/hl2sdk"
|
||||||
|
|
||||||
|
if [ -x "$(command -v meson)" ]; then
|
||||||
|
echo "meson is not installed"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# --depth=1 checkout in workflow runners has no branch info
|
# --depth=1 checkout in workflow runners has no branch info
|
||||||
if [ "$CI" = "true" ]
|
if [ "$CI" = "true" ]
|
||||||
then
|
then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue