Skip to content

Commit

Permalink
github: Rework build
Browse files Browse the repository at this point in the history
  • Loading branch information
pg9182 committed Apr 16, 2024
1 parent e8448d7 commit cbd3493
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 23 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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'
23 changes: 0 additions & 23 deletions .github/workflows/plugins.yml

This file was deleted.

0 comments on commit cbd3493

Please sign in to comment.