enhancement: Use CD Image name for screenshot if no floppy was found #375
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: C/C++ CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- dev | |
tags: | |
- v*.*.* | |
pull_request: | |
branches: | |
- master | |
- dev | |
jobs: | |
build-macOS-x86_64: | |
runs-on: macos-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Install dependencies | |
run: | | |
brew update | |
brew install sdl2 mpg123 sdl2_ttf sdl2_image flac libmpeg2 libserialport dylibbundler wget | |
- name: make capsimg | |
run: make capsimg | |
- name: make for macOS X64 | |
run: make -j4 PLATFORM=osx-x86 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-macOS-64bit-intel | |
path: | | |
Amiberry.app/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-macOS-x86_64.zip Amiberry.app | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "macOS-x86_64" | |
path: amiberry-${{ steps.tag.outputs.tag }}-macOS-x86_64.zip | |
build-debian-buster-x86_64: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-x86_64:buster | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=x86-64 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-buster-x86_64 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-buster-x86_64.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-buster-x86_64" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-buster-x86_64.zip | |
build-debian-bullseye-x86_64: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-x86_64:bullseye | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=x86-64 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-bullseye-x86_64 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-x86_64.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-bullseye-x86_64" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-x86_64.zip | |
build-debian-bookworm-x86_64: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-x86_64:bookworm | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=x86-64 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-bookworm-x86_64 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-x86_64.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-bookworm-x86_64" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-x86_64.zip | |
build-manjaro-aarch64-rpi4: | |
runs-on: [self-hosted, Linux, ARM64, manjaro] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: make capsimg | |
run: make capsimg | |
- name: build for RPI4 64-bit | |
run: make -j4 PLATFORM=rpi4-64-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-manjaro-aarch64-rpi4 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-manjaro-aarch64-rpi4.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "manjaro-aarch64-rpi4" | |
path: amiberry-${{ steps.tag.outputs.tag }}-manjaro-aarch64-rpi4.zip | |
build-manjaro-aarch64-rk3399: | |
runs-on: [self-hosted, Linux, ARM64, manjaro] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: make capsimg | |
run: make capsimg | |
- name: build for RPI4 64-bit | |
run: make -j4 PLATFORM=n2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-manjaro-aarch64-rk3399 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-manjaro-aarch64-rk3399.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "manjaro-aarch64-rk3399" | |
path: amiberry-${{ steps.tag.outputs.tag }}-manjaro-aarch64-rk3399.zip | |
build-debian-bookworm-aarch64-rpi5: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-aarch64:bookworm | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=rpi5-64-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-bookworm-aarch64-rpi5 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-aarch64-rpi5.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-bookworm-aarch64-rpi5" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-aarch64-rpi5.zip | |
build-debian-bookworm-armhf-rpi5: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-armhf:bookworm | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=rpi5-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-bookworm-armhf-rpi5 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-armhf-rpi5.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-bookworm-armhf-rpi5" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-armhf-rpi5.zip | |
build-debian-buster-aarch64-rpi4: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-aarch64:buster | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=rpi4-64-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-buster-aarch64-rpi4 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-buster-aarch64-rpi4.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-buster-aarch64-rpi4" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-buster-aarch64-rpi4.zip | |
build-debian-buster-armhf-rpi4: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-armhf:buster | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=rpi4-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-buster-armhf-rpi4 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-buster-armhf-rpi4.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-buster-armhf-rpi4" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-buster-armhf-rpi4.zip | |
build-debian-bullseye-aarch64-rpi4: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-aarch64:bullseye | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=rpi4-64-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-bullseye-aarch64-rpi4 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-aarch64-rpi4.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-bullseye-aarch64-rpi4" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-aarch64-rpi4.zip | |
build-debian-bullseye-armhf-rpi4: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-armhf:bullseye | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=rpi4-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-bullseye-armhf-rpi4 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-armhf-rpi4.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-bullseye-armhf-rpi4" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-armhf-rpi4.zip | |
build-debian-bookworm-aarch64-rpi4: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-aarch64:bookworm | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=rpi4-64-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-bookworm-aarch64-rpi4 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-aarch64-rpi4.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-bookworm-aarch64-rpi4" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-aarch64-rpi4.zip | |
build-debian-bookworm-armhf-rpi4: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-armhf:bookworm | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=rpi4-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-bookworm-armhf-rpi4 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-armhf-rpi4.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-bookworm-armhf-rpi4" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-armhf-rpi4.zip | |
build-debian-buster-aarch64-rpi3: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-aarch64:buster | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=rpi3-64-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-buster-aarch64-rpi3 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-buster-aarch64-rpi3.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-buster-aarch64-rpi3" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-buster-aarch64-rpi3.zip | |
build-debian-buster-armhf-rpi3: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-armhf:buster | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=rpi3-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-buster-armhf-rpi3 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-buster-armhf-rpi3.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-buster-armhf-rpi3" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-buster-armhf-rpi3.zip | |
build-debian-bullseye-aarch64-rpi3: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-aarch64:bullseye | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=rpi3-64-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-bullseye-aarch64-rpi3 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-aarch64-rpi3.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-bullseye-aarch64-rpi3" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-aarch64-rpi3.zip | |
build-debian-bullseye-armhf-rpi3: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-armhf:bullseye | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=rpi3-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-bullseye-armhf-rpi3 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-armhf-rpi3.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-bullseye-armhf-rpi3" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-armhf-rpi3.zip | |
build-debian-bookworm-aarch64-rpi3: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-aarch64:bookworm | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=rpi3-64-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-bookworm-aarch64-rpi3 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-aarch64-rpi3.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-bookworm-aarch64-rpi3" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-aarch64-rpi3.zip | |
build-debian-bookworm-armhf-rpi3: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Run the build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: midwan/amiberry-debian-armhf:bookworm | |
options: -v ${{ github.workspace }}:/build | |
run: | | |
make capsimg | |
make -j8 PLATFORM=rpi3-sdl2 | |
- name: Upload artifact | |
if: github.ref_type != 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amiberry-debian-bookworm-armhf-rpi3 | |
path: | | |
amiberry | |
capsimg.so | |
abr/** | |
conf/** | |
controllers/** | |
data/** | |
inputrecordings/** | |
kickstarts/** | |
nvram/** | |
savestates/** | |
screenshots/** | |
whdboot/** | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: ZIP binaries | |
if: github.ref_type == 'tag' | |
run: zip -r amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-armhf-rpi3.zip amiberry capsimg.so abr conf controllers data kickstarts savestates screenshots whdboot | |
- name: Upload artifact | |
if: github.ref_type == 'tag' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "debian-bookworm-armhf-rpi3" | |
path: amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-armhf-rpi3.zip | |
build-flatpak: | |
runs-on: ubuntu-latest | |
container: | |
image: bilelmoussaoui/flatpak-github-actions:freedesktop-23.08 | |
options: --privileged | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Flatpak | |
uses: flatpak/flatpak-github-actions/flatpak-builder@v6.1 | |
with: | |
bundle: amiberry.flatpak | |
manifest-path: ./flatpak/com.blitterstudio.amiberry.yml | |
arch: x86_64 | |
build-bundle: true | |
verbose: true | |
cache: true | |
restore-cache: true | |
cache-key: flatpak-builder-${{ github.sha }} | |
create-release: | |
needs: [build-macOS-x86_64, build-debian-buster-x86_64, build-debian-bullseye-x86_64, build-debian-bookworm-x86_64, build-manjaro-aarch64-rpi4, build-manjaro-aarch64-rk3399, build-debian-bookworm-aarch64-rpi5, build-debian-bookworm-armhf-rpi5, build-debian-buster-aarch64-rpi4, build-debian-buster-armhf-rpi4, build-debian-bullseye-aarch64-rpi4, build-debian-bullseye-armhf-rpi4, build-debian-bookworm-aarch64-rpi4, build-debian-bookworm-armhf-rpi4, build-debian-buster-aarch64-rpi3, build-debian-buster-armhf-rpi3, build-debian-bullseye-aarch64-rpi3, build-debian-bullseye-armhf-rpi3, build-debian-bookworm-aarch64-rpi3, build-debian-bookworm-armhf-rpi3, build-flatpak] | |
runs-on: ubuntu-latest | |
if: github.ref_type == 'tag' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get tag | |
if: github.ref_type == 'tag' | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
# Optionally strip `v` prefix | |
strip_v: false | |
- name: Create Changelog | |
if: github.ref_type == 'tag' | |
id: changelog | |
uses: loopwerk/tag-changelog@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config_file: .github/tag-changelog-config.js | |
- name: Download Build Artifacts | |
uses: actions/download-artifact@v3 | |
- name: Create Release | |
if: github.ref_type == 'tag' | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
omitBodyDuringUpdate: true | |
body: ${{ steps.changelog.outputs.changes }} | |
artifacts: | | |
macOS-x86_64/amiberry-${{ steps.tag.outputs.tag }}-macOS-x86_64.zip | |
debian-buster-x86_64/amiberry-${{ steps.tag.outputs.tag }}-debian-buster-x86_64.zip | |
debian-bullseye-x86_64/amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-x86_64.zip | |
debian-bookworm-x86_64/amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-x86_64.zip | |
manjaro-aarch64-rpi4/amiberry-${{ steps.tag.outputs.tag }}-manjaro-aarch64-rpi4.zip | |
manjaro-aarch64-rk3399/amiberry-${{ steps.tag.outputs.tag }}-manjaro-aarch64-rk3399.zip | |
debian-bookworm-aarch64-rpi5/amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-aarch64-rpi5.zip | |
debian-bookworm-armhf-rpi5/amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-armhf-rpi5.zip | |
debian-buster-aarch64-rpi4/amiberry-${{ steps.tag.outputs.tag }}-debian-buster-aarch64-rpi4.zip | |
debian-buster-armhf-rpi4/amiberry-${{ steps.tag.outputs.tag }}-debian-buster-armhf-rpi4.zip | |
debian-bullseye-aarch64-rpi4/amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-aarch64-rpi4.zip | |
debian-bullseye-armhf-rpi4/amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-armhf-rpi4.zip | |
debian-bookworm-aarch64-rpi4/amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-aarch64-rpi4.zip | |
debian-bookworm-armhf-rpi4/amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-armhf-rpi4.zip | |
debian-buster-aarch64-rpi3/amiberry-${{ steps.tag.outputs.tag }}-debian-buster-aarch64-rpi3.zip | |
debian-buster-armhf-rpi3/amiberry-${{ steps.tag.outputs.tag }}-debian-buster-armhf-rpi3.zip | |
debian-bullseye-aarch64-rpi3/amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-aarch64-rpi3.zip | |
debian-bullseye-armhf-rpi3/amiberry-${{ steps.tag.outputs.tag }}-debian-bullseye-armhf-rpi3.zip | |
debian-bookworm-aarch64-rpi3/amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-aarch64-rpi3.zip | |
debian-bookworm-armhf-rpi3/amiberry-${{ steps.tag.outputs.tag }}-debian-bookworm-armhf-rpi3.zip |