-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (33 loc) · 986 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: ci
on:
push:
pull_request:
workflow_dispatch:
jobs:
plugins:
name: plugins / ${{matrix.arch}}
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include:
- arch: 64
cc: x86_64-w64-mingw32-gcc
- arch: 32
cc: i686-w64-mingw32-gcc
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW${{matrix.arch}}
path-type: inherit
- shell: msys2 {0}
run: go run . ${{matrix.arch}} CC=${{matrix.cc}} -a -ldflags '-s -w -extldflags=-static' -trimpath -v -x ./plugins/...
# note: -a is needed to prevent caching issues when switching the C compiler (https://pkg.go.dev/cmd/go#hdr-Build_and_test_caching)
- uses: actions/upload-artifact@v4
with:
name: plugins${{matrix.arch}}
path: '*.dll'