nomi-nonsz ab6c7683c4
Some checks failed
ci/woodpecker/push/test-build Pipeline failed
what the hell tar
2025-07-30 12:09:13 +07:00

29 lines
1.0 KiB
YAML

when:
- branch: [main, new/woodpecker-pipeline]
event: push
steps:
- name: getbuildtools
image: debian:bookworm
environment:
DOWNLOAD_LOCATION: dependencies
SOURCEMOD_DOWNLOAD_URL: https://sm.alliedmods.net/smdrop/1.12/sourcemod-1.12.0-git7210-linux.tar.gz
SOURCEMOD_FILENAME: sourcemod.tar.gz
commands:
- apt update && apt install -y lib32stdc++6 wget
- mkdir $DOWNLOAD_LOCATION
- wget -O $DOWNLOAD_LOCATION/$SOURCEMOD_FILENAME $SOURCEMOD_DOWNLOAD_URL
- ls $DOWNLOAD_LOCATION
- tar -zxvf $DOWNLOAD_LOCATION/$SOURCEMOD_FILENAME
- ls $DOWNLOAD_LOCATION
- tar -zxvf $DOWNLOAD_LOCATION/$SOURCEMOD_FILENAME \
addons/sourcemod/scripting/include \
addons/sourcemod/scripting/spcomp \
addons/sourcemod/scripting/spcomp64 \
addons/sourcemod/scripting/compile.sh
- exit 2
- name: build
image: debian:bookworm
commands:
- cp -rv scripting/* addons/sourcemod/scripting/
- bash addons/sourcemod/scripting/compile.sh