-
Notifications
You must be signed in to change notification settings - Fork 56
33 lines (28 loc) · 953 Bytes
/
ant-compile-tab.yml
File metadata and controls
33 lines (28 loc) · 953 Bytes
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
name: Build Data Tables
on:
push:
branches: [ master ]
paths:
- '**.tab'
- '!sku.0/sys.shared/built/game/misc/**'
pull_request:
branches: [ master ]
paths:
- '**.tab'
- '!sku.0/sys.shared/built/game/misc/**'
workflow_dispatch:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Latest
uses: actions/checkout@v2
- name: Setup System Requisites
run: |
sudo apt-get install -y lib32z1
sudo chmod 777 ${GITHUB_WORKSPACE}/include/DataTableTool
# NOTE: DataTableTool was built and placed in dsrc/include which is called by ant when compile_tab is ran
# The DataTableTool in dsrc is a special version modified specifically to work with the GitHub Runner so DO NOT replace it with a regular build
- name: Build Datatables with Ant
run: ant -noinput -buildfile build.xml compile_tab