Skip to content

Commit

Permalink
Update gearsystem.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
drhelius authored Feb 1, 2024
1 parent 90a50e0 commit 4b446ad
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/gearsystem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ on:

jobs:
linux:
name: Linux (Ubuntu)
runs-on: ubuntu-latest
name: Linux
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -25,7 +28,7 @@ jobs:
- name: Archive binary
uses: actions/upload-artifact@v4
with:
name: Linux (Ubuntu) binary
name: Linux (${{ matrix.os }}) binary
path: platforms/linux/gearsystem
libretro:
name: Libretro (Ubuntu)
Expand All @@ -45,7 +48,10 @@ jobs:
path: platforms/libretro/gearsystem_libretro.so
macos:
name: macOS
runs-on: macOS-latest
strategy:
matrix:
os: [macos-13, macos-14]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -59,7 +65,7 @@ jobs:
- name: Archive binary
uses: actions/upload-artifact@v4
with:
name: macOS App bundle
name: ${{ matrix.os }} App bundle
path: platforms/macos/Gearsystem.app
windows:
name: Windows
Expand All @@ -70,7 +76,7 @@ jobs:
with:
fetch-depth: 0
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.3.1
uses: microsoft/setup-msbuild@v2
- name: Get git version
id: gitversion
shell: bash
Expand Down

0 comments on commit 4b446ad

Please sign in to comment.