Add c68k and musashi cpu core build #3
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: PX68K Linux x86_64 | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build-px68k: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build libretro core with default CPU core | |
run: | | |
make -f Makefile.libretro clean | |
make -f Makefile.libretro | |
build-px68k-cpu-c68k: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build libretro core with updated C68K CPU core | |
run: | | |
make -f Makefile.libretro clean | |
make -f Makefile.libretro C68K=1 | |
build-px68k-cpu-musashi: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build libretro core Musashi CPU core | |
run: | | |
make -f Makefile.libretro clean | |
make -f Makefile.libretro MUSASHI=1 |