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 f2bc461
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 23 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ci
on:
push:
pull_request:
workflow_dispatch:

jobs:
plugins:
name: plugins / ${{matrix.arch}}
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
arch:
- 64
- 32
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}} -ldflags '-s -w -extldflags=-static' -trimpath -v -x ./plugins/...
- 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 f2bc461

Please sign in to comment.