mirror of
https://github.com/grumpycoders/pcsx-redux.git
synced 2025-04-02 10:41:54 -04:00
27 lines
No EOL
645 B
YAML
27 lines
No EOL
645 B
YAML
name: macOS toolchain CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
macos-build-and-test-toolchain:
|
|
|
|
runs-on: macOS-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
set-safe-directory: true
|
|
- uses: n1hility/cancel-previous-runs@v2
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: build mips binutils
|
|
run: brew install ./tools/macos-mips/mipsel-none-elf-binutils.rb --debug
|
|
- name: build mips gcc
|
|
run: brew install ./tools/macos-mips/mipsel-none-elf-gcc.rb --debug
|
|
- name: build openbios
|
|
run: make -C ./src/mips/openbios |