Skip to content

Commit

Permalink
Add c68k and musashi cpu core build
Browse files Browse the repository at this point in the history
  • Loading branch information
negativeExponent committed Aug 13, 2024
1 parent b0a8fc5 commit 744bd8c
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/px68k-linux-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,29 @@ on:
branches: [ "master" ]

jobs:
build:
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
- name: Build libretro core Musashi CPU core
run: |
make -f Makefile.libretro clean
make -f Makefile.libretro
make -f Makefile.libretro MUSASHI=1

0 comments on commit 744bd8c

Please sign in to comment.