diff options
author | Francis Lavoie <[email protected]> | 2021-08-31 15:44:07 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-31 13:44:07 -0600 |
commit | 105dac8c2a3e48ed3957a606322015138752efd2 (patch) | |
tree | d6571baf10269881eaa8e516deac1449675dab12 /.github | |
parent | 4ebf100f099021bbec7eaa5284fe18f5f72feeb4 (diff) | |
download | caddy-105dac8c2a3e48ed3957a606322015138752efd2.tar.gz caddy-105dac8c2a3e48ed3957a606322015138752efd2.zip |
ci: Only test cross-build on latest Go version (#4319)
This generated way too many test jobs, which weren't really that useful. Cross-build is just to keep us posted on which architectures are building okay, so it's not necessary to do it twice. Only plan9 is not working at this point (see https://github.com/caddyserver/caddy/issues/3615)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cross-build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cross-build.yml b/.github/workflows/cross-build.yml index 277f22ca5..5c038569f 100644 --- a/.github/workflows/cross-build.yml +++ b/.github/workflows/cross-build.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: goos: ['android', 'linux', 'solaris', 'illumos', 'dragonfly', 'freebsd', 'openbsd', 'plan9', 'windows', 'darwin', 'netbsd'] - go: [ '1.16', '1.17' ] + go: [ '1.17' ] runs-on: ubuntu-latest continue-on-error: true steps: |