Skip to content

Commit

Permalink
Create msys2-mingw64.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vampirefrog authored Nov 17, 2024
1 parent cae3cd9 commit 6f2d0f0
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/msys2-mingw64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: MSYS2 MINGW64 Build

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
msys2-mingw64:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: git make mingw64/mingw-w64-x86_64-gcc
- name: Build with make
run: make
- name: Set outputs
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: x68ksjis-${{steps.vars.outputs.sha_short}}
path: '*.exe'

0 comments on commit 6f2d0f0

Please sign in to comment.