Skip to content

Commit 3025566

Browse files
authored
Execute proxy-wasm-cpp-host ubuntu-24.04 actions on larger runner (#460)
Signed-off-by: Michael Warres <mpw@google.com>
1 parent 8b2e653 commit 3025566

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.github/workflows/format.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
addlicense:
4444
name: verify licenses
4545

46-
runs-on: ubuntu-24.04
46+
runs-on: ubuntu-24.04-16core
4747

4848
steps:
4949
- uses: actions/checkout@v2
@@ -63,7 +63,7 @@ jobs:
6363
buildifier:
6464
name: check format with buildifier
6565

66-
runs-on: ubuntu-24.04
66+
runs-on: ubuntu-24.04-16core
6767

6868
steps:
6969
- uses: actions/checkout@v2
@@ -101,7 +101,7 @@ jobs:
101101
clang_format:
102102
name: check format with clang-format
103103

104-
runs-on: ubuntu-24.04
104+
runs-on: ubuntu-24.04-16core
105105

106106
steps:
107107
- uses: actions/checkout@v2
@@ -117,7 +117,7 @@ jobs:
117117
clang_tidy:
118118
name: check format with clang-tidy
119119

120-
runs-on: ubuntu-24.04
120+
runs-on: ubuntu-24.04-16core
121121

122122
steps:
123123
- uses: actions/checkout@v2

.github/workflows/test.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
test_data:
4444
name: build test data
4545

46-
runs-on: ubuntu-24.04
46+
runs-on: ubuntu-24.04-16core
4747

4848
steps:
4949
- uses: actions/checkout@v2
@@ -128,19 +128,19 @@ jobs:
128128
include:
129129
- name: 'NullVM on Linux/x86_64'
130130
engine: 'null'
131-
os: ubuntu-24.04
131+
os: ubuntu-24.04-16core
132132
arch: x86_64
133133
action: test
134134
flags: --config=gcc
135135
- name: 'NullVM on Linux/x86_64 with ASan'
136136
engine: 'null'
137-
os: ubuntu-24.04
137+
os: ubuntu-24.04-16core
138138
arch: x86_64
139139
action: test
140140
flags: --config=clang-asan --define=crypto=system
141141
- name: 'NullVM on Linux/x86_64 with TSan'
142142
engine: 'null'
143-
os: ubuntu-24.04
143+
os: ubuntu-24.04-16core
144144
arch: x86_64
145145
action: test
146146
flags: --config=clang-tsan
@@ -153,31 +153,31 @@ jobs:
153153
- name: 'V8 on Linux/x86_64'
154154
engine: 'v8'
155155
repo: 'v8'
156-
os: ubuntu-24.04
156+
os: ubuntu-24.04-16core
157157
arch: x86_64
158158
action: test
159159
flags: --config=hermetic-llvm --define=crypto=system
160160
cache: true
161161
- name: 'V8 on Linux/x86_64 with ASan'
162162
engine: 'v8'
163163
repo: 'v8'
164-
os: ubuntu-24.04
164+
os: ubuntu-24.04-16core
165165
arch: x86_64
166166
action: test
167167
flags: --config=hermetic-llvm --config=clang-asan
168168
cache: true
169169
- name: 'V8 on Linux/x86_64 with TSan'
170170
engine: 'v8'
171171
repo: 'v8'
172-
os: ubuntu-24.04
172+
os: ubuntu-24.04-16core
173173
arch: x86_64
174174
action: test
175175
flags: --config=hermetic-llvm --config=clang-tsan
176176
cache: true
177177
- name: 'V8 on Linux/x86_64 with GCC'
178178
engine: 'v8'
179179
repo: 'v8'
180-
os: ubuntu-24.04
180+
os: ubuntu-24.04-16core
181181
arch: x86_64
182182
action: test
183183
flags: --config=gcc
@@ -202,7 +202,7 @@ jobs:
202202
- name: 'WAMR interp on Linux/x86_64'
203203
engine: 'wamr-interp'
204204
repo: 'com_github_bytecodealliance_wasm_micro_runtime'
205-
os: ubuntu-24.04
205+
os: ubuntu-24.04-16core
206206
arch: x86_64
207207
action: test
208208
flags: --config=clang
@@ -215,7 +215,7 @@ jobs:
215215
- name: 'WAMR jit on Linux/x86_64'
216216
engine: 'wamr-jit'
217217
repo: 'com_github_bytecodealliance_wasm_micro_runtime'
218-
os: ubuntu-24.04
218+
os: ubuntu-24.04-16core
219219
arch: x86_64
220220
action: test
221221
flags: --config=clang
@@ -231,7 +231,7 @@ jobs:
231231
- name: 'WasmEdge on Linux/x86_64'
232232
engine: 'wasmedge'
233233
repo: 'com_github_wasmedge_wasmedge'
234-
os: ubuntu-24.04
234+
os: ubuntu-24.04-16core
235235
arch: x86_64
236236
action: test
237237
flags: --config=clang
@@ -244,14 +244,14 @@ jobs:
244244
- name: 'Wasmtime on Linux/x86_64'
245245
engine: 'wasmtime'
246246
repo: 'com_github_bytecodealliance_wasmtime'
247-
os: ubuntu-24.04
247+
os: ubuntu-24.04-16core
248248
arch: x86_64
249249
action: test
250250
flags: --config=clang -c opt
251251
- name: 'Wasmtime on Linux/x86_64 with ASan'
252252
engine: 'wasmtime'
253253
repo: 'com_github_bytecodealliance_wasmtime'
254-
os: ubuntu-24.04
254+
os: ubuntu-24.04-16core
255255
arch: x86_64
256256
action: test
257257
flags: --config=clang-asan --define=crypto=system
@@ -265,7 +265,7 @@ jobs:
265265
- name: 'Wasmtime on Linux/s390x'
266266
engine: 'wasmtime'
267267
repo: 'com_github_bytecodealliance_wasmtime'
268-
os: ubuntu-24.04
268+
os: ubuntu-24.04-16core
269269
arch: s390x
270270
action: test
271271
flags: --config=clang --test_timeout=1800

0 commit comments

Comments
 (0)