Skip to content

Commit

Permalink
Workflow experiments
Browse files Browse the repository at this point in the history
  • Loading branch information
negrutiu committed Jun 4, 2024
1 parent 48d0f76 commit 82a6b2e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@ jobs:

runs-on: ${{matrix.os}}
steps:
- name: Setup mingw32
uses: msys2/setup-msys2@v2
with:
update: true
install: git mingw-w64-i686-toolchain
if: matrix.arch == 'x86'

- name: Setup mingw64
uses: msys2/setup-msys2@v2
with:
update: true
install: git mingw-w64-x86_64-toolchain
if: matrix.arch == 'amd64'

- name: Dump environment
shell: cmd
run: |
Expand Down

0 comments on commit 82a6b2e

Please sign in to comment.