Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zer0k-z committed Dec 13, 2023
1 parent 39f3d07 commit 686a6c9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:

- name: Configure AMBuild
working-directory: build
run: python3 ../configure.py --hl2sdk-root "../" --mms_path "../metamod-source" --hl2sdk-manifest "/metamod-source/hl2sdk-manifests" -s cs2 --targets x86_64
run: python3 ../configure.py --hl2sdk-root "../" --mms_path "../metamod-source" --hl2sdk-manifest "/hl2sdk-manifests" -s cs2 --targets x86_64

- name: Update version header
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,20 +69,20 @@ Windows (ambuild/msvc):
```
mkdir build
cd build
python3 ../configure.py --hl2sdk-root "../" --mms_path "../metamod-source" --hl2sdk-manifest "../metamod-source/hl2sdk-manifests" -s cs2 --targets x86_64
python3 ../configure.py --hl2sdk-root "../" --mms_path "../metamod-source" --hl2sdk-manifest "/hl2sdk-manifests" -s cs2 --targets x86_64
ambuild
```

For windows debugging with VS, build the project then add the following command at the end:
```
python3 ../configure.py --hl2sdk-root "../" --mms_path "../metamod-source" --hl2sdk-manifest "../metamod-source/hl2sdk-manifests" -s cs2 --targets x86_64 --gen=vs --vs-version 17
python3 ../configure.py --hl2sdk-root "../" --mms_path "../metamod-source" --hl2sdk-manifest "/hl2sdk-manifests" -s cs2 --targets x86_64--gen=vs --vs-version 17
```

Linux (ambuild/clang):
```
mkdir build
cd build
python3 ../configure.py --hl2sdk-root "../" --mms_path "../metamod-source" --hl2sdk-manifest "/../metamod-source/hl2sdk-manifests" -s cs2 --targets x86_64
python3 ../configure.py --hl2sdk-root "../" --mms_path "../metamod-source" --hl2sdk-manifest "/hl2sdk-manifests" -s cs2 --targets x86_64
ambuild
```

Expand Down
2 changes: 1 addition & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

cd build
python3 ../configure.py --hl2sdk-root "../" --mms_path "../metamod-source" --hl2sdk-manifest "/metamod-source/hl2sdk-manifests" -s cs2 --targets x86_64
python3 ../configure.py --hl2sdk-root "../" --mms_path "../metamod-source" --hl2sdk-manifest "/hl2sdk-manifests" -s cs2 --targets x86_64
ambuild
1 change: 1 addition & 0 deletions hl2sdk-manifests

0 comments on commit 686a6c9

Please sign in to comment.