Update gearboy.yml #370
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: Main Workflow | |
on: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' | |
env: | |
name-lowercase: gearboy | |
name-uppercase: Gearboy | |
jobs: | |
linux: | |
name: Linux | |
strategy: | |
matrix: | |
os: [ubuntu-22.04, ubuntu-20.04] | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Update OS | |
run: sudo apt-get update -qq | |
- name: Install dependencies | |
run: sudo apt-get install -y libsdl2-dev libglew-dev libgtk-3-dev | |
- name: make | |
run: make | |
working-directory: platforms/linux | |
- name: Prepare artifact directory | |
run: | | |
mkdir -p artifact | |
cp platforms/README.txt artifact | |
cp platforms/gamecontrollerdb.txt artifact | |
cp platforms/linux/${{ env.name-lowercase }} artifact | |
- name: Archive binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Linux binary (${{ matrix.os }}) | |
path: artifact/* | |
libretro: | |
name: Libretro (Ubuntu) | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: make | |
run: make | |
working-directory: platforms/libretro | |
- name: Archive binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Libretro core (Linux) | |
path: platforms/libretro/${{ env.name-lowercase }}_libretro.so | |
macos: | |
name: macOS | |
strategy: | |
matrix: | |
os: [macos-13, macos-14] | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: brew install sdl2 | |
- name: make | |
run: make dist | |
working-directory: platforms/macos | |
- name: Prepare artifact directory | |
run: | | |
mkdir -p artifact | |
cp platforms/README.txt artifact | |
cp platforms/gamecontrollerdb.txt artifact | |
cp platforms/macos/${{ env.name-uppercase }}.app artifact | |
- name: Archive binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: macOS app bundle (${{ matrix.os }}) | |
path: artifact/* | |
windows: | |
name: Windows | |
runs-on: windows-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v2 | |
- name: Get git version | |
id: gitversion | |
shell: bash | |
run: echo "gitversion=$(git describe --abbrev=7 --dirty --always --tags)" >> $GITHUB_OUTPUT | |
- name: msbuild | |
run: msbuild ${{ env.name-uppercase }}.sln /t:Clean,Build /p:EmulatorBuild="${{ steps.gitversion.outputs.gitversion }}" /p:Configuration=Release | |
working-directory: platforms/windows | |
- name: Prepare artifact directory | |
run: | | |
mkdir -p artifact | |
cp platforms/README.txt artifact | |
cp platforms/gamecontrollerdb.txt artifact | |
cp platforms/windows/dependencies/glew-2.1.0/bin/Release/x64/glew32.dll artifact | |
cp platforms/windows/dependencies/SDL2-2.28.5/lib/x64/SDL2.dll artifact | |
cp platforms/windows/release/${{ env.name-uppercase }}.exe artifact | |
- name: Archive binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Windows binary | |
path: artifact/* | |
bsd: | |
name: FreeBSD | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: make | |
id: test | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
usesh: true | |
prepare: pkg install -y git gmake pkgconf SDL2 glew lang/gcc gtk3 | |
run: | | |
cd platforms/bsd | |
gmake | |
- name: Prepare artifact directory | |
run: | | |
mkdir -p artifact | |
cp platforms/README.txt artifact | |
cp platforms/gamecontrollerdb.txt artifact | |
cp platforms/bsd/${{ env.name-lowercase }} artifact | |
- name: Archive binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: BSD binary (FreeBSD) | |
path: artifact/* | |
release: | |
name: Release | |
needs: [linux, macos, windows] | |
if: github.event_name != 'pull_request' && startswith(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Prepare release directory | |
run: | | |
mkdir -p release | |
- name: Download Windows artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: Windows binary | |
path: release | |
- name: Download macOS Intel artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: macos-13 App bundle | |
path: release | |
- name: Download macOS ARM artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: macos-14 App bundle | |
path: release | |
- name: Download Ubuntu 22.04 artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: Linux (ubuntu-22.04) binary | |
path: release | |
- name: Download Ubuntu 20.04 artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: Linux (ubuntu-20.04) binary | |
path: release | |
- name: Create release | |
run: | | |
cd release | |
gh release create ${{ github.ref }} \ | |
'${{ github.ref_name }}-windows.zip' \ | |
'${{ github.ref_name }}-macos-intel.zip' \ | |
'${{ github.ref_name }}-macos-arm.zip' \ | |
'${{ github.ref_name }}-ubuntu-22.04.zip' \ | |
'${{ github.ref_name }}-ubuntu-20.04.zip' \ | |
--generate-notes \ | |
--draft | |
env: | |
GITHUB_TOKEN: ${{ github.TOKEN }} |