.github/workflows/cross-compile.yml #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
jobs: | |
crosscompile: | |
strategy: | |
fail-fast: false | |
matrix: | |
go: [ "1.21.x", "1.22.x" ] | |
runs-on: ${{ fromJSON(vars['CROSS_COMPILE_RUNNER_UBUNTU'] || '"ubuntu-latest"') }} | |
name: "Cross Compilation (Go ${{matrix.go}})" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Install build utils | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y gcc-multilib | |
- name: Install dependencies | |
run: go build example/main.go | |
- name: Run cross compilation | |
# run in parallel on as many cores as are available on the machine | |
run: go tool dist list | xargs -I % -P "$(nproc)" .github/workflows/cross-compile.sh % |