Skip to content

Commit 67bd09f

Browse files
committed
ci: move to github actions runner
1 parent 3e69227 commit 67bd09f

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/go-test-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
GOTESTFLAGS: -cover -coverprofile=module-coverage.txt -coverpkg=./...
2626
GO386FLAGS: ""
2727
GORACEFLAGS: ""
28-
runs-on: ${{ fromJSON(vars[format('UCI_GO_TEST_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }}
28+
runs-on: ${{ format("{0}-latest", matrix.os) }}
2929
name: ${{ matrix.os }} (go ${{ matrix.go }})
3030
steps:
3131
- name: Use msys2 on windows

.github/workflows/interop-test.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,26 @@ on:
44
workflow_dispatch:
55
pull_request:
66
paths:
7-
- 'config/**'
8-
- 'core/**'
9-
- 'internal/**'
10-
- 'p2p/**'
11-
- 'test-plans/**'
12-
- '.github/workflows/interop-test.yml'
7+
- "config/**"
8+
- "core/**"
9+
- "internal/**"
10+
- "p2p/**"
11+
- "test-plans/**"
12+
- ".github/workflows/interop-test.yml"
1313
push:
1414
branches:
1515
- "master"
1616
paths:
17-
- 'config/**'
18-
- 'core/**'
19-
- 'internal/**'
20-
- 'p2p/**'
21-
- 'test-plans/**'
17+
- "config/**"
18+
- "core/**"
19+
- "internal/**"
20+
- "p2p/**"
21+
- "test-plans/**"
2222

2323
jobs:
2424
run-transport-interop:
2525
name: Run transport interoperability tests
26-
runs-on: ${{ fromJSON(vars['INTEROP_TEST_RUNNER_UBUNTU'] || '"ubuntu-22.04"') }}
26+
runs-on: ${{ "ubuntu-22.04" }}
2727
steps:
2828
- name: Free Disk Space (Ubuntu)
2929
if: vars['INTEROP_TEST_RUNNER_UBUNTU'] == ''

0 commit comments

Comments
 (0)