-
Notifications
You must be signed in to change notification settings - Fork 20
44 lines (40 loc) · 1.3 KB
/
push.yml
File metadata and controls
44 lines (40 loc) · 1.3 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
name: Kirby 64 Pull Request CI
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout reposistory
uses: actions/checkout@v2
with:
submodules: recursive
- name: Download Qemu Irix
run: wget https://github.com/n64decomp/qemu-irix/releases/download/v2.11-deb/qemu-irix-2.11.0-2169-g32ab296eef_amd64.deb
- name: Install Qemu Irix
run: sudo dpkg -i qemu-irix-2.11.0-2169-g32ab296eef_amd64.deb
- name: Install Dependencies
run: sudo apt update && sudo apt install -y binutils-mips-linux-gnu gcc git gcc-mips-linux-gnu
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: More dependencies
uses: actions/checkout@v2
with:
repository: ${{ secrets.SECRETREPO }}
token: ${{ secrets.SECRETTOKEN }}
path: dep
- name: Get the dependency
run: cp dep/${{ secrets.ANOTHERSECRET }} .
- name: Build Libultra
run: make -C libreultra -j4
- name: Build Naudio
run: make -C libreultra naudio -j4
- name: Build Tools
run: make -C tools
- name: Assemble F3DEX2
run: make -C f3dex2 VERSION=2.04H ARMIPS=../tools/armips
- name: Prepare Kirby 64 for building
run: make setup
- name: Build Kirby 64
run: make -j$(nproc) VERBOSE=0