mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
ci: allow changing runners through config vars (#3783)
* ci: allow changing runners through config vars * fix variable access --------- Co-authored-by: galargh <piotr.galar@gmail.com>
This commit is contained in:
parent
172123c340
commit
c19e6a71b2
3 changed files with 3 additions and 3 deletions
2
.github/workflows/cross-compile.yml
vendored
2
.github/workflows/cross-compile.yml
vendored
|
@ -5,7 +5,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
go: [ "1.19.x", "1.20.x" ]
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{ fromJSON(vars['CROSS_COMPILE_RUNNER_UBUNTU'] || '"ubuntu-latest"') }}
|
||||
name: "Cross Compilation (Go ${{matrix.go}})"
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
|
2
.github/workflows/integration.yml
vendored
2
.github/workflows/integration.yml
vendored
|
@ -6,7 +6,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
go: [ "1.19.x", "1.20.x" ]
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{ fromJSON(vars['INTEGRATION_RUNNER_UBUNTU'] || '"ubuntu-latest"') }}
|
||||
env:
|
||||
DEBUG: false # set this to true to export qlogs and save them as artifacts
|
||||
TIMESCALE_FACTOR: 3
|
||||
|
|
2
.github/workflows/unit.yml
vendored
2
.github/workflows/unit.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
|||
matrix:
|
||||
os: [ "ubuntu", "windows", "macos" ]
|
||||
go: [ "1.19.x", "1.20.x" ]
|
||||
runs-on: ${{ matrix.os }}-latest
|
||||
runs-on: ${{ fromJSON(vars[format('UNIT_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }}
|
||||
name: Unit tests (${{ matrix.os}}, Go ${{ matrix.go }})
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue