forked from SirPlease/L4D2-Competitive-Rework
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (61 loc) · 1.63 KB
/
check_plugins.yml
File metadata and controls
66 lines (61 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Check all plugins
on:
pull_request:
paths:
- 'addons/sourcemod/scripting/**/*.sp'
- 'addons/sourcemod/scripting/**/*.inc'
branches:
- master
push:
paths:
- 'addons/sourcemod/scripting/**/*.sp'
- 'addons/sourcemod/scripting/**/*.inc'
branches:
- master
workflow_dispatch:
paths:
- 'addons/sourcemod/scripting/**/*.sp'
- 'addons/sourcemod/scripting/**/*.inc'
branches:
- master
jobs:
build:
name: build with sm${{ matrix.sm_version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sm_version:
#- "1.9"
#- "1.10"
#- "1.11"
- "1.12"
- "1.13"
steps:
- uses: actions/checkout@v4
- name: Set environment variables
run: |
echo "SCRIPTS_PATH=$GITHUB_WORKSPACE/addons/sourcemod/scripting" >> $GITHUB_ENV
- name: Setup SourcePawn Compiler ${{ matrix.SM_VERSION }}
uses: rumblefrog/setup-sp@master
with:
version: ${{ matrix.SM_VERSION }}
- name: Compile plugins
run: |
errors=0
for file in *.sp
do
echo -e "\nCompiling $file..."
spcomp -E -w234 -w217 -O2 -v2 -i $SCRIPTS_PATH/include $file || {
errors=$((errors + 1))
continue
}
done
if [ "$errors" -gt 0 ]; then
echo -e "\n$errors plugin(s) failed to compile."
exit 1
else
echo -e "\nAll plugins compiled successfully."
exit 0
fi
working-directory: ${{ env.SCRIPTS_PATH }}/