forked from libretro/picodrive
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'libretro:master' into master
- Loading branch information
Showing
44 changed files
with
964 additions
and
577 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,241 @@ | ||
name: Picodrive CI | ||
on: [push, pull_request] | ||
jobs: | ||
build-linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update -qq | ||
sudo apt-get install -y libsdl1.2-dev libasound2-dev libpng-dev libz-dev | ||
- name: configure | ||
run: DUMP_CONFIG_LOG=1 ./configure | ||
- name: make | ||
run: make -j2 | ||
|
||
build-libretro: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: make | ||
run: LDFLAGS=-Wl,--no-undefined make -j2 -f Makefile.libretro | ||
|
||
|
||
build-gp2x: | ||
runs-on: ubuntu-latest | ||
container: ghcr.io/irixxxx/toolchain-gp2x | ||
permissions: | ||
packages: read | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: build | ||
run: | | ||
git config --global --add safe.directory $PWD | ||
ver=$(cut -d'"' -f2 platform/common/version.h)-$(git rev-parse --short HEAD) | ||
./configure --platform=gp2x | ||
make -j2 PLATFORM_MP3=0 | ||
make -C platform/gp2x rel VER=$ver | ||
mv PicoDrive_$ver.zip PicoDrive-gph_$ver.zip | ||
- name: artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: GP2X | ||
path: PicoDrive-gph_*.zip | ||
|
||
build-pandora: | ||
runs-on: ubuntu-latest | ||
container: ghcr.io/irixxxx/toolchain-pandora | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: build | ||
run: | | ||
git config --global --add safe.directory $PWD | ||
ver=$(cut -d'"' -f2 platform/common/version.h)-$(git rev-parse --short HEAD) | ||
./configure --platform=pandora | ||
make -j2 | ||
mv PicoDrive PicoDrive-pandora | ||
${CROSS_COMPILE}strip PicoDrive-pandora | ||
- name: artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Pandora | ||
path: PicoDrive-pandora | ||
|
||
build-psp: | ||
runs-on: ubuntu-latest | ||
container: ghcr.io/pspdev/pspdev | ||
steps: | ||
- name: build environment | ||
run: | | ||
apk add git gcc g++ zip | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: build | ||
run: | | ||
export CROSS_COMPILE=psp- | ||
git config --global --add safe.directory $PWD | ||
ver=$(cut -d'"' -f2 platform/common/version.h)-$(git rev-parse --short HEAD) | ||
./configure --platform=psp | ||
make -j2 | ||
make -C platform/psp rel VER=$ver | ||
- name: artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: PSP | ||
path: PicoDrive_psp_*.zip | ||
|
||
|
||
build-dingux: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: read | ||
container: ghcr.io/irixxxx/toolchain-dingux | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: build | ||
run: | | ||
git config --global --add safe.directory $PWD | ||
ver=$(cut -d'"' -f2 platform/common/version.h)-$(git rev-parse --short HEAD) | ||
./configure --platform=dingux | ||
make -j2 | ||
mv PicoDrive-dge.zip PicoDrive-dge-$ver.zip | ||
- name: artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Dingux | ||
path: PicoDrive-dge*.zip | ||
|
||
build-gcw0: | ||
runs-on: ubuntu-latest | ||
container: ghcr.io/irixxxx/toolchain-opendingux | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: build | ||
run: | | ||
git config --global --add safe.directory $PWD | ||
ver=$(cut -d'"' -f2 platform/common/version.h)-$(git rev-parse --short HEAD) | ||
./configure --platform=gcw0 | ||
make -j2 | ||
mv PicoDrive.opk PicoDrive-gcw0-$ver.opk | ||
- name: artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: GCW0 | ||
path: PicoDrive-gcw0*.opk | ||
|
||
build-opendingux: | ||
runs-on: ubuntu-latest | ||
container: ghcr.io/irixxxx/toolchain-opendingux | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: build | ||
run: | | ||
git config --global --add safe.directory $PWD | ||
ver=$(cut -d'"' -f2 platform/common/version.h)-$(git rev-parse --short HEAD) | ||
./configure --platform=opendingux | ||
make -j2 | ||
mv PicoDrive.opk PicoDrive-opendingux-$ver.opk | ||
- name: artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Opendingux | ||
path: PicoDrive-opendingux*.opk | ||
|
||
build-miyoo: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: read | ||
container: miyoocfw/toolchain | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: build | ||
run: | | ||
export CROSS_COMPILE=arm-buildroot-linux-musleabi- | ||
git config --global --add safe.directory /home/picodrive | ||
ver=$(cut -d'"' -f2 platform/common/version.h)-$(git rev-parse --short HEAD) | ||
./configure --platform=miyoo | ||
make -j2 | ||
mv PicoDrive.zip PicoDrive-miyoo-$ver.zip | ||
- name: artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Miyoo | ||
path: PicoDrive-miyoo*.zip | ||
|
||
build-retrofw: | ||
runs-on: ubuntu-latest | ||
container: ghcr.io/irixxxx/toolchain-retrofw | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: build | ||
run: | | ||
git config --global --add safe.directory $PWD | ||
ver=$(cut -d'"' -f2 platform/common/version.h)-$(git rev-parse --short HEAD) | ||
./configure --platform=retrofw | ||
make -j2 | ||
mv PicoDrive.opk PicoDrive-retrofw-$ver.opk | ||
- name: artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: RetroFW | ||
path: PicoDrive-retrofw*.opk | ||
|
||
build-odbeta-gcw0: | ||
runs-on: ubuntu-latest | ||
container: ghcr.io/irixxxx/toolchain-odbeta-gcw0 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: build | ||
run: | | ||
git config --global --add safe.directory $PWD | ||
ver=$(cut -d'"' -f2 platform/common/version.h)-$(git rev-parse --short HEAD) | ||
./configure --platform=opendingux | ||
make -j2 | ||
mv PicoDrive.opk PicoDrive-odbeta-gcw0-$ver.opk | ||
- name: artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ODbeta gcw0 | ||
path: PicoDrive-odbeta-*.opk | ||
|
||
build-odbeta-lepus: | ||
runs-on: ubuntu-latest | ||
container: ghcr.io/irixxxx/toolchain-odbeta-lepus | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: build | ||
run: | | ||
git config --global --add safe.directory $PWD | ||
ver=$(cut -d'"' -f2 platform/common/version.h)-$(git rev-parse --short HEAD) | ||
./configure --platform=opendingux | ||
make -j2 | ||
mv PicoDrive.opk PicoDrive-odbeta-lepus-$ver.opk | ||
- name: artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ODbeta lepus | ||
path: PicoDrive-odbeta-*.opk |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: prepare | ||
on: workflow_call | ||
|
||
jobs: | ||
prepare: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: create release | ||
id: create_release | ||
if: ${{ github.ref_type == 'tag' }} | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
tag=$(echo ${{ github.ref }} | sed 's:refs/tags/::') | ||
gh release create "$tag" --verify-tag -d -t "$tag" -n "$tag" | ||
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
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
Oops, something went wrong.