a small fix when player died and use the command that not exist #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Plugin build | |
on: | |
push: | |
paths-ignore: | |
- LICENSE | |
- README.md | |
pull_request: | |
paths-ignore: | |
- LICENSE | |
- README.md | |
jobs: | |
linux: | |
name: linux build | |
runs-on: ubuntu-latest | |
env: | |
HL2SDKCS2: ${{ github.workspace }}/cs2fixes/sdk | |
CC: clang | |
CXX: clang++ | |
container: | |
image: idk1703/build-img:11 | |
steps: | |
- name: Checking out MM:Source | |
uses: actions/checkout@v3 | |
with: | |
repository: alliedmodders/metamod-source | |
ref: master | |
path: metamod-source | |
- name: Checking out own repository | |
uses: actions/checkout@v3 | |
with: | |
path: cs2fixes | |
submodules: recursive | |
- name: Compiling files | |
working-directory: cs2fixes | |
run: | | |
python3 configure.py --enable-optimize --symbol-files --sdks cs2 | |
ambuild objdir | |
windows: | |
name: windows build | |
runs-on: windows-latest | |
env: | |
HL2SDKCS2: ${{ github.workspace }}/cs2fixes/sdk | |
steps: | |
- name: Setting up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Python dependencies | |
run: | | |
python3 -m pip install --upgrade pip setuptools wheel | |
pip install git+https://github.com/alliedmodders/ambuild | |
- name: Checking out MM:Source | |
uses: actions/checkout@v3 | |
with: | |
repository: alliedmodders/metamod-source | |
ref: master | |
path: metamod-source | |
- name: Checking out own repository | |
uses: actions/checkout@v3 | |
with: | |
path: cs2fixes | |
submodules: recursive | |
- name: Compiling files | |
working-directory: cs2fixes | |
run: | | |
python3 configure.py --enable-optimize --symbol-files --sdks cs2 | |
ambuild objdir |