Skip to content

Lets all love __info__ #63

Lets all love __info__

Lets all love __info__ #63

Workflow file for this run

name: Windows build
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
strategy:
matrix:
include:
- {chain: mingw32, cc: gcc}
- {chain: mingw64, cc: gcc}
- {chain: clang64, cc: clang}
steps:
- uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.chain}}
install: make pkgconf
pacboy: ${{matrix.cc}}:p
- name: Compile .exe
run: |
export backends=gdi
export BINARY=activate-windows-${{matrix.chain}}.exe
make
- name: Upload .exe
uses: actions/upload-artifact@v3
with:
name: activate-windows.exe
path: |
activate-windows-*.exe