mirror of
https://github.com/HackerN64/F3DEX3.git
synced 2026-01-21 10:37:45 -08:00
Merge branch 'main' into build-test
This commit is contained in:
25
.github/workflows/makefile.yml
vendored
Normal file
25
.github/workflows/makefile.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
name: Make F3DEX3 Binary File.
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
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
|
||||
run: git clone --recursive https://github.com/Kingcom/armips.git ; cd armips ; mkdir build && cd build ; cmake -DCMAKE_BUILD_TYPE=Release .. ; cmake --build .
|
||||
|
||||
- name: Make The Binary
|
||||
run: make -j ARMIPS=armips/build/armips
|
||||
Reference in New Issue
Block a user