Skip to content

Commit 13a3757

Browse files
committed
Update workflow
1 parent 62ce936 commit 13a3757

File tree

2 files changed

+2
-18
lines changed

2 files changed

+2
-18
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -65,23 +65,6 @@ jobs:
6565
echo "CC=clang" >> $GITHUB_ENV
6666
echo "CXX=clang++" >> $GITHUB_ENV
6767
68-
- name: Add msbuild to PATH (Windows)
69-
if: startsWith(runner.os, 'Windows')
70-
uses: microsoft/setup-msbuild@v2
71-
72-
- name: Install (Windows)
73-
if: startsWith(runner.os, 'Windows')
74-
shell: cmd
75-
run: |
76-
:: See https://github.com/microsoft/vswhere/wiki/Find-VC
77-
for /f "usebackq delims=*" %%i in (`vswhere -latest -property installationPath`) do (
78-
call "%%i"\Common7\Tools\vsdevcmd.bat -arch=x86 -host_arch=x64
79-
)
80-
:: Loop over all environment variables and make them global.
81-
for /f "delims== tokens=1,2" %%a in ('set') do (
82-
echo>>"%GITHUB_ENV%" %%a=%%b
83-
)
84-
8568
- name: Checking out SourceMod
8669
uses: actions/checkout@v4
8770
with:
@@ -148,6 +131,7 @@ jobs:
148131
path: src
149132

150133
- name: Compiling ${{ github.event.repository.name }} files
134+
shell: bash
151135
working-directory: src
152136
run: |
153137
mkdir build

AMBuildScript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ class ExtensionConfig(object):
484484

485485
if compiler.target.platform == 'linux':
486486
if sdk.name in ['csgo', 'blade']:
487-
compiler.linkflags.remove('-static-libstdc++')
487+
#compiler.linkflags.remove('-static-libstdc++')
488488
compiler.defines += ['_GLIBCXX_USE_CXX11_ABI=0']
489489

490490
for path in paths:

0 commit comments

Comments
 (0)