Skip to content

Commit

Permalink
CI: give OSes pretty names
Browse files Browse the repository at this point in the history
And name the resulting zip file Descent3_<OS>.zip
  • Loading branch information
th1000s committed Apr 25, 2024
1 parent 47ff6e5 commit a0a247a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,27 @@ jobs:
preset: win
cc: cl
cxx: cl
name: Windows-x86
- runner: macos-12 # This is supposed to be Intel for now, and what macos-latest is defaulting to for some reason (as of 04/2024)
preset: mac
cc: cc
cxx: c++
name: macOS-Intel
- runner: macos-14 # This is supposed to be M1
preset: mac
cc: cc
cxx: c++
name: macOS-ARM
- runner: ubuntu-latest
preset: linux
cc: gcc
cxx: g++
name: Linux-x64
- runner: ubuntu-latest
preset: linux
cc: clang
cxx: clang++
name: Linux-x64-clang

runs-on: ${{ matrix.os.runner }}

Expand Down Expand Up @@ -76,7 +81,7 @@ jobs:
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: build_${{ matrix.os.runner }}_${{ matrix.os.cxx }}
name: Descent3_${{ matrix.os.name }}
path: |
${{ github.workspace }}/builds/${{ matrix.os.preset }}/Descent3/Debug/
${{ github.workspace }}/builds/${{ matrix.os.preset }}/Descent3/Release/

0 comments on commit a0a247a

Please sign in to comment.