Part way through register assignment of last draft #71
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Make F3DEX3 Binary File. | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt install cmake build-essential | |
- name: Get armips | |
uses: actions/checkout@v4.1.1 | |
with: | |
path: armips | |
repository: Kingcom/armips | |
submodules: "true" | |
- name: Build armips | |
run: | | |
cd armips | |
mkdir build && cd build | |
cmake -DCMAKE_BUILD_TYPE=Release .. | |
cmake --build . | |
- name: Make The Binary | |
run: make all -j ARMIPS=armips/build/armips |