-
-
Notifications
You must be signed in to change notification settings - Fork 285
155 lines (153 loc) · 4.69 KB
/
ci_suite.yml
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
name: CI Suite
on:
push:
branches:
- master
- 'project/**'
pull_request:
branches:
- master
- 'project/**'
jobs:
run_linters:
name: Run Linters
runs-on: ubuntu-22.04
concurrency:
group: run_linters-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
steps:
- name: Checkout Branch
uses: actions/checkout@v3
- name: Restore Bootstrap cache
uses: actions/cache@v3
with:
path: tools/bootstrap/.cache
key: ${{ runner.os }}-bootstrap-${{ hashFiles('dependencies.sh', 'tools/requirements.txt') }}
restore-keys: |
${{ runner.os }}-bootstrap-
- name: Restore Rust / Cargo cache
uses: actions/cache@v3
with:
path: ~/.cargo
key: ${{ runner.os }}-rust-
- name: Restore TGUI / Yarn cache
uses: actions/cache@v3
with:
path: tgui/.yarn/cache
key: ${{ runner.os }}-yarn-${{ hashFiles('tgui/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Restore SpacemanDMM cache
uses: actions/cache@v3
with:
path: ~/SpacemanDMM
key: ${{ runner.os }}-spacemandmm-${{hashFiles('dependencies.sh')}}
- name: Install Node
run: |
tools/bootstrap/node --version
- name: Install Python
run: |
tools/bootstrap/python --version
- name: Install SpacemanDMM Suite
run: |
bash tools/ci/install/install_spaceman_dmm.sh dreamchecker
- name: Install Ripgrep
run: |
cargo install ripgrep --features pcre2
# - name: Install Setuptools
# run: |
# pip3 install setuptools
- name: CI - Parse DM (dreamchecker)
run: |
~/dreamchecker > ${GITHUB_WORKSPACE}/output-annotations.txt 2>&1
- name: CI - Annotate DM (dreamchecker)
if: always()
uses: yogstation13/DreamAnnotate@v2
with:
outputFile: output-annotations.txt
- name: CI - DMI Tests
if: always()
run: |
tools/bootstrap/python -m dmi.test
- name: CI - DMM Tests
if: always()
run: |
tools/bootstrap/python -m mapmerge2.dmm_test
- name: CI - TGUI
if: always()
run: |
tools/build/build --ci lint tgui-test
- name: CI - Grep (string checks)
if: always()
run: |
tools/ci/check_grep.sh
- name: CI - Changelogs
if: always()
run: |
tools/ci/check_changelogs.sh
- name: CI - DME Validation
if: always()
run: |
tools/ci/check_filedirs.sh citadel.dme
- name: CI - Misc
if: always()
run: |
bash tools/ci/check_misc.sh
compile_all_maps:
name: Compile Maps
runs-on: ubuntu-22.04
concurrency:
group: compile_all_maps-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
- name: Setup cache
uses: actions/cache@v3
with:
path: ~/BYOND
key: ${{ runner.os }}-byond
- name: Compile All Maps
run: |
bash tools/ci/install/install_byond.sh
source $HOME/BYOND/byond/bin/byondsetup
tools/build/build --ci dm -DCIBUILDING -DCITESTING -DALL_MAPS
run_all_tests:
name: Integration Tests
concurrency:
group: run_all_tests-${{ github.ref }}
cancel-in-progress: true
runs-on: ubuntu-22.04
services:
mysql:
image: mysql:latest
env:
MYSQL_ROOT_PASSWORD: root
ports:
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- uses: actions/checkout@v3
- name: Restore BYOND cache
uses: actions/cache@v3
with:
path: ~/BYOND
key: ${{ runner.os }}-byond
- name: Setup database
run: |
sudo systemctl start mysql
mysql -u root -proot -e 'CREATE DATABASE ss13_ci;'
mysql -u root -proot ss13_ci < SQL/database_schema_prefixed.sql
mysql -u root -proot ss13_ci < SQL/unified_schema.sql
# mysql -u root -proot -e 'CREATE DATABASE tg_ci_prefixed;'
# mysql -u root -proot tg_ci_prefixed < SQL/tgstation_schema_prefixed.sql
- name: Install rust-g
run: |
bash tools/ci/install/install_rust_g.sh
- name: Compile and run tests
run: |
bash tools/ci/install/install_byond.sh
source $HOME/BYOND/byond/bin/byondsetup
tools/build/build --ci dm -DCIBUILDING -DCITESTING
bash tools/ci/run_server.sh
env:
CBT_BUILD_MODE: TEST_RUN