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

jobs:
plugins:
name: plugins / ${{matrix.arch}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- arch: 64
mingw: x86-64
- arch: 32
mingw: i686
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: false # note: this and -a is needed to prevent caching issues when switching the C compiler (https://pkg.go.dev/cmd/go#hdr-Build_and_test_caching)
- run: sudo apt install -y gcc-mingw-w64-${{matrix.mingw}} g++-mingw-w64-${{matrix.mingw}}
- run: go run . ${{matrix.arch}} CC=${{matrix.mingw}}-w64-mingw32-gcc CXX=${{matrix.mingw}}-w64-mingw32-g++ -a -ldflags '-s -w -extldflags=-static' -trimpath -v ./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 4bf2d6a

Please sign in to comment.