forked from quic-go/quic-go
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
25 lines
831 B
YAML
25 lines
831 B
YAML
on: [push, pull_request]
|
|
jobs:
|
|
crosscompile:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
go: [ "1.24.x", "1.25.x" ]
|
|
runs-on: ${{ fromJSON(vars['CROSS_COMPILE_RUNNER_UBUNTU'] || '"ubuntu-latest"') }}
|
|
name: "Cross Compilation (Go ${{matrix.go}})"
|
|
timeout-minutes: 30
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- 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 %
|