Skip to content

Commit

Permalink
Fix ovl 7 bss
Browse files Browse the repository at this point in the history
Co-Authored-By: cadmic <[email protected]>
  • Loading branch information
inspectredc and cadmic committed Mar 5, 2025
1 parent b6c0922 commit 1561ea3
Show file tree
Hide file tree
Showing 8 changed files with 1,483 additions and 1,234 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/cijp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Build JP

# Build on every branch push, tag push, and pull request change:
on: [push, pull_request_target]

jobs:
build_repo:
name: Build repo
runs-on: ubuntu-latest

strategy:
fail-fast: false

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Install package requirements
run: sudo apt-get install -y git make git build-essential binutils-mips-linux-gnu python3 python3-pip

- name: Install Python dependencies
run: python3 -m pip install -r ./tools/requirements-python.txt

- name: Update submodules
run: git submodule update --init --recursive

- name: build toolchain
run: make -s -C tools

- name: Get extra dependencies
uses: actions/checkout@v4
with:
repository: ${{ secrets.FZEROX_DEPENDENCIES }}
token: ${{ secrets.FZEROX_TOKEN }}
path: fzerox-secret

- name: Get the dependency
run: cp -r fzerox-secret/baserom.jp.rev0.z64 ./

- name: Compile
run: make init
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@
"fzx_course.h": "c",
"fzx_math.h": "c",
"segment_1b8550.h": "c",
"fzx_object.h": "c"
"fzx_object.h": "c",
"fzx_hud.h": "c"
},
"C_Cpp_Runner.msvcBatchPath": "",
"C_Cpp.errorSquiggles": "enabled"
Expand Down
Loading

0 comments on commit 1561ea3

Please sign in to comment.