ci: move to github actions runner

This commit is contained in:
Marco Munizaga
2025-09-30 11:32:05 -07:00
parent 3e69227598
commit ca2ec81fc9
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ jobs:
GOTESTFLAGS: -cover -coverprofile=module-coverage.txt -coverpkg=./...
GO386FLAGS: ""
GORACEFLAGS: ""
runs-on: ${{ fromJSON(vars[format('UCI_GO_TEST_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }}
runs-on: ${{ fromJSON(format('"{0}-latest"', matrix.os)) }}
name: ${{ matrix.os }} (go ${{ matrix.go }})
steps:
- name: Use msys2 on windows

View File

@@ -23,7 +23,7 @@ on:
jobs:
run-transport-interop:
name: Run transport interoperability tests
runs-on: ${{ fromJSON(vars['INTEROP_TEST_RUNNER_UBUNTU'] || '"ubuntu-22.04"') }}
runs-on: ubuntu-latest
steps:
- name: Free Disk Space (Ubuntu)
if: vars['INTEROP_TEST_RUNNER_UBUNTU'] == ''