Skip to content

Commit

Permalink
update4
Browse files Browse the repository at this point in the history
  • Loading branch information
negativeExponent committed Sep 13, 2024
1 parent 2150427 commit 091cef0
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 4 deletions.
44 changes: 41 additions & 3 deletions .github/workflows/px68k.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PX68K Libretro x86_64
name: PX68K_Next Libretro

on:
push:
Expand All @@ -10,12 +10,12 @@ on:
if: github.actor == github.event.repository.owner.login

jobs:
linux:
px68k_linux:
runs-on: ubuntu-latest
steps:
- name: Checkout source
run: git clone https://github.com/negativeExponent/px68k-libretro.git && cd px68k-libretro
- name: build
- name: build px68k_next with original c68k mpu
working-directory: px68k-libretro
run: |
make -j$(getconf _NPROCESSORS_ONLN) clean
Expand All @@ -28,3 +28,41 @@ jobs:
tag: Linux_64-bit
file: px68k_next_libretro.so.zip
overwrite: true

px68k_c68K_linux:
runs-on: ubuntu-latest
steps:
- name: Checkout source
run: git clone https://github.com/negativeExponent/px68k-libretro.git && cd px68k-libretro
- name: build px68k_next with latest c68k mpu
working-directory: px68k-libretro
run: |
make -j$(getconf _NPROCESSORS_ONLN) C68K=1 clean
make -j$(getconf _NPROCESSORS_ONLN) C68K=1
zip -9 ../px68k-libretro_c68k_linux-x86_64.zip px68k_next_libretro.so
- name: Create new release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: Linux_64-bit
file: px68k-libretro_c68k_linux-x86_64.zip
overwrite: true

px68k_musashi_linux:
runs-on: ubuntu-latest
steps:
- name: Checkout source
run: git clone https://github.com/negativeExponent/px68k-libretro.git && cd px68k-libretro
- name: build px68k_next with musashi mpu
working-directory: px68k-libretro
run: |
make -j$(getconf _NPROCESSORS_ONLN) C68K=1 clean
make -j$(getconf _NPROCESSORS_ONLN) C68K=1
zip -9 ../px68k-libretro_musashi_linux-x86_64.zip px68k_next_libretro.so
- name: Create new release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: Linux_64-bit
file: px68k-libretro_musashi_linux-x86_64.zip
overwrite: true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ Automated builds of RetroArch and libretro cores for Windows and Linux 64-bit (a
| --------- |:-------:|:-----:|:-------------:|
| [FCEUmm](https://github.com/negativeExponent/libretro-fceumm) | [![libretro-fceumm Windows x86_64](https://github.com/negativeExponent/libretro_builds/actions/workflows/win64_fceumm.yml/badge.svg)](https://github.com/negativeExponent/libretro_builds/releases/download/Windows_64-bit/fceumm_libretro.dll.zip) |[![libretro-fceumm libretro Linux x86_64](https://github.com/negativeExponent/libretro_builds/actions/workflows/linux64_fceumm.yml/badge.svg)](https://github.com/negativeExponent/libretro_builds/releases/download/Linux_64-bit/fceumm_libretro.so.zip) |
| [Mesen (Mesen-X)](https://github.com/NovaSquirrel/Mesen-X) | [![Mesen-X-libretro Windows x86_64 (Msys2)](https://github.com/negativeExponent/libretro_builds/actions/workflows/win64_mesen_msys2.yml/badge.svg)](https://github.com/negativeExponent/libretro_builds/releases/download/Windows_64-bit/mesen_libretro.dll.zip) |[![mesen-libretro libretro Linux x86_64](https://github.com/negativeExponent/libretro_builds/actions/workflows/linux64_mesen.yml/badge.svg)](https://github.com/negativeExponent/libretro_builds/releases/download/Linux_64-bit/mesen_libretro.so.zip) |
| [PX68K](https://github.com/negativeExponent/px68k-libretro) | [![px68k-libretro Windows x86_64](https://github.com/negativeExponent/libretro_builds/actions/workflows/win64_px68k.yml/badge.svg)](https://github.com/negativeExponent/libretro_builds/releases/download/Windows_64-bit/px68k_libretro.dll.zip) |[![px68k-libretro libretro Linux x86_64](https://github.com/negativeExponent/libretro_builds/actions/workflows/linux64_px68k.yml/badge.svg)](https://github.com/negativeExponent/libretro_builds/releases/download/Linux_64-bit/px68k_libretro.so.zip) |
| [PX68K](https://github.com/negativeExponent/px68k-libretro) | [![px68k-libretro Windows x86_64](https://github.com/negativeExponent/libretro_builds/actions/workflows/win64_px68k.yml/badge.svg)](https://github.com/negativeExponent/libretro_builds/releases/download/Windows_64-bit/px68k_next_libretro.dll.zip) |[![px68k-libretro libretro Linux x86_64](https://github.com/negativeExponent/libretro_builds/actions/workflows/linux64_px68k.yml/badge.svg)](https://github.com/negativeExponent/libretro_builds/releases/download/Linux_64-bit/px68k_next_libretro.so.zip) |
| [PX68K (C68K)](https://github.com/negativeExponent/px68k-libretro) | [![px68k-libretro (c68k) Windows x86_64](https://github.com/negativeExponent/libretro_builds/actions/workflows/win64_px68k_c68k.yml/badge.svg)](https://github.com/negativeExponent/libretro_builds/releases/download/Windows_64-bit/px68k-libretro_c68k_windows-x86_64.zip) |[![px68k-libretro (c68k) Linux x86_64](https://github.com/negativeExponent/libretro_builds/actions/workflows/linux64_px68k.yml/badge.svg)](https://github.com/negativeExponent/libretro_builds/releases/download/Linux_64-bit/px68k-libretro_c68k_linux-x86_64.zip) |
| [PX68K (MUSASHI)](https://github.com/negativeExponent/px68k-libretro) | [![px68k-libretro (musashi) Windows x86_64](https://github.com/negativeExponent/libretro_builds/actions/workflows/win64_px68k_c68k.yml/badge.svg)](https://github.com/negativeExponent/libretro_builds/releases/download/Windows_64-bit/px68k-libretro_musashi_windows-x86_64.zip) |[![px68k-libretro (musashi) Linux x86_64](https://github.com/negativeExponent/libretro_builds/actions/workflows/linux64_px68k.yml/badge.svg)](https://github.com/negativeExponent/libretro_builds/releases/download/Linux_64-bit/px68k-libretro_musashi_linux-x86_64.zip) |

0 comments on commit 091cef0

Please sign in to comment.