-
Notifications
You must be signed in to change notification settings - Fork 5
57 lines (44 loc) · 1.69 KB
/
ci.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
name: Build
# Build on every branch push, tag push, and pull request change:
on: [push, pull_request_target]
jobs:
build_repo:
name: Build repo (${{ matrix.version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [us]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install package requirements
run: sudo apt-get install -y make git build-essential binutils-mips-linux-gnu gcc-mips-linux-gnu python3 python3-pip libfmt-dev libtoml11-dev
- name: Install Python dependencies
run: pip3 install -r tools/requirements.txt
- name: Install Splat dependencies
run: pip3 install -r tools/splat/requirements.txt
- name: Get extra dependencies
uses: actions/checkout@v3
with:
repository: ${{ secrets.SECRETREPO }}
token: ${{ secrets.SECRETTOKEN }}
path: deps_repo
- name: Get the dependency
run: cp deps_repo/baserom.${{ matrix.version }}.z64 baserom.${{ matrix.version }}.z64
- name: Setup
run: make setup -j $(nproc)
- name: Build Banjo-Tooie
run: make -j $(nproc)
- name: Print progress
run: python3 tools/progress.py --version ${{ matrix.version }}
- name: Upload frogress
if: ${{ github.ref == 'refs/heads/master' && github.event_name != 'pull_request_target' }}
run: python3 tools/upload_frogress.py ${{ matrix.version }} --apikey ${{ secrets.PROGRESS_API_KEY }}
- name: Upload map
uses: actions/upload-artifact@v3
with:
name: banjotooie.${{ matrix.version }}.map
path: build/${{ matrix.version }}/banjotooie_decompressed.map