forked from MrMelbert/MapleStationCode
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (41 loc) · 1.34 KB
/
Copy pathcompile_all_maps.yml
File metadata and controls
46 lines (41 loc) · 1.34 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
name: Compile All Maps
on:
workflow_call:
inputs:
max_required_byond_client:
required: true
type: string
jobs:
compile_all_stations:
name: Compile All Station Maps
runs-on: ubuntu-22.04
timeout-minutes: 5
steps:
- uses: actions/checkout@v5
- name: Setup Bun
uses: ./.github/actions/setup_bun
- name: Restore BYOND from Cache
uses: ./.github/actions/restore_or_install_byond
- name: Compile All Maps
run: |
source $HOME/BYOND/byond/bin/byondsetup
tools/build/build.sh --ci dm -DCIBUILDING -DCITESTING -DALL_MAPS
- name: Check client Compatibility # // NON-MODULE CHANGE
uses: tgstation/byond-client-compatibility-check@v3
with:
dmb-location: maplestation.dmb
max-required-client-version: ${{inputs.max_required_byond_client}}
compile_all_templates:
name: Compile All Templates
runs-on: ubuntu-22.04
timeout-minutes: 5
steps:
- uses: actions/checkout@v5
- name: Setup Bun
uses: ./.github/actions/setup_bun
- name: Restore BYOND from Cache
uses: ./.github/actions/restore_or_install_byond
- name: Compile All Maps
run: |
source $HOME/BYOND/byond/bin/byondsetup
tools/build/build.sh --ci dm -DCIBUILDING -DCITESTING -DALL_TEMPLATES