Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
addlicense:
name: verify licenses

runs-on: ubuntu-24.04
runs-on: ubuntu-24.04-16core

steps:
- uses: actions/checkout@v2
Expand All @@ -63,7 +63,7 @@ jobs:
buildifier:
name: check format with buildifier

runs-on: ubuntu-24.04
runs-on: ubuntu-24.04-16core

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
clang_format:
name: check format with clang-format

runs-on: ubuntu-24.04
runs-on: ubuntu-24.04-16core

steps:
- uses: actions/checkout@v2
Expand All @@ -117,7 +117,7 @@ jobs:
clang_tidy:
name: check format with clang-tidy

runs-on: ubuntu-24.04
runs-on: ubuntu-24.04-16core

steps:
- uses: actions/checkout@v2
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
test_data:
name: build test data

runs-on: ubuntu-24.04
runs-on: ubuntu-24.04-16core

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -128,19 +128,19 @@ jobs:
include:
- name: 'NullVM on Linux/x86_64'
engine: 'null'
os: ubuntu-24.04
os: ubuntu-24.04-16core
arch: x86_64
action: test
flags: --config=gcc
- name: 'NullVM on Linux/x86_64 with ASan'
engine: 'null'
os: ubuntu-24.04
os: ubuntu-24.04-16core
arch: x86_64
action: test
flags: --config=clang-asan --define=crypto=system
- name: 'NullVM on Linux/x86_64 with TSan'
engine: 'null'
os: ubuntu-24.04
os: ubuntu-24.04-16core
arch: x86_64
action: test
flags: --config=clang-tsan
Expand All @@ -153,31 +153,31 @@ jobs:
- name: 'V8 on Linux/x86_64'
engine: 'v8'
repo: 'v8'
os: ubuntu-24.04
os: ubuntu-24.04-16core
arch: x86_64
action: test
flags: --config=hermetic-llvm --define=crypto=system
cache: true
- name: 'V8 on Linux/x86_64 with ASan'
engine: 'v8'
repo: 'v8'
os: ubuntu-24.04
os: ubuntu-24.04-16core
arch: x86_64
action: test
flags: --config=hermetic-llvm --config=clang-asan
cache: true
- name: 'V8 on Linux/x86_64 with TSan'
engine: 'v8'
repo: 'v8'
os: ubuntu-24.04
os: ubuntu-24.04-16core
arch: x86_64
action: test
flags: --config=hermetic-llvm --config=clang-tsan
cache: true
- name: 'V8 on Linux/x86_64 with GCC'
engine: 'v8'
repo: 'v8'
os: ubuntu-24.04
os: ubuntu-24.04-16core
arch: x86_64
action: test
flags: --config=gcc
Expand All @@ -202,7 +202,7 @@ jobs:
- name: 'WAMR interp on Linux/x86_64'
engine: 'wamr-interp'
repo: 'com_github_bytecodealliance_wasm_micro_runtime'
os: ubuntu-24.04
os: ubuntu-24.04-16core
arch: x86_64
action: test
flags: --config=clang
Expand All @@ -215,7 +215,7 @@ jobs:
- name: 'WAMR jit on Linux/x86_64'
engine: 'wamr-jit'
repo: 'com_github_bytecodealliance_wasm_micro_runtime'
os: ubuntu-24.04
os: ubuntu-24.04-16core
arch: x86_64
action: test
flags: --config=clang
Expand All @@ -231,7 +231,7 @@ jobs:
- name: 'WasmEdge on Linux/x86_64'
engine: 'wasmedge'
repo: 'com_github_wasmedge_wasmedge'
os: ubuntu-24.04
os: ubuntu-24.04-16core
arch: x86_64
action: test
flags: --config=clang
Expand All @@ -244,14 +244,14 @@ jobs:
- name: 'Wasmtime on Linux/x86_64'
engine: 'wasmtime'
repo: 'com_github_bytecodealliance_wasmtime'
os: ubuntu-24.04
os: ubuntu-24.04-16core
arch: x86_64
action: test
flags: --config=clang -c opt
- name: 'Wasmtime on Linux/x86_64 with ASan'
engine: 'wasmtime'
repo: 'com_github_bytecodealliance_wasmtime'
os: ubuntu-24.04
os: ubuntu-24.04-16core
arch: x86_64
action: test
flags: --config=clang-asan --define=crypto=system
Expand All @@ -265,7 +265,7 @@ jobs:
- name: 'Wasmtime on Linux/s390x'
engine: 'wasmtime'
repo: 'com_github_bytecodealliance_wasmtime'
os: ubuntu-24.04
os: ubuntu-24.04-16core
arch: s390x
action: test
flags: --config=clang --test_timeout=1800
Expand Down
Loading