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
7 changes: 3 additions & 4 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ name: Code Quality Checks
on:
push:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
formatting-check:
name: Check clang-format
runs-on: tenki-standard-large-plus-16c-32g
runs-on: tenki-staging-standard-small-2c-4g
steps:
- uses: actions/checkout@v4

Expand All @@ -23,7 +22,7 @@ jobs:

traits-check:
name: Trait instantiation check
runs-on: tenki-standard-large-plus-16c-32g
runs-on: tenki-staging-standard-small-2c-4g
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -40,7 +39,7 @@ jobs:

clang-tidy:
name: Check clang-tidy
runs-on: tenki-standard-large-plus-16c-32g
runs-on: tenki-staging-standard-small-2c-4g
steps:
- name: Generate token
id: generate_token
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@ name: Docker

on:
push:

jobs:
build:
strategy:
matrix:
CMAKE_BUILD_TYPE: [RelWithDebInfo, Debug]
compiler: [{CXX: g++-15, CC: gcc-15}, {CXX: clang++-19, CC: clang-19}]

runs-on: tenki-standard-large-plus-16c-32g
runs-on: tenki-staging-standard-small-2c-4g

steps:
- name: Generate app token
Expand Down Expand Up @@ -64,4 +63,4 @@ jobs:
allow: security.insecure # for tests which use io_uring
ulimit: "memlock=-1:-1"
target: build_and_test
cache-from: type=gha,scope=base
cache-from: type=gha,scope=base
6 changes: 3 additions & 3 deletions .github/workflows/license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ on:
- 'third_party/**'
pull_request:
branches: ["main"]
types: [ opened, synchronize, reopened, edited ]
types: [opened, synchronize, reopened, edited]
paths-ignore:
- 'third_party/**'

jobs:
check-license:
runs-on: tenki-standard-large-plus-16c-32g
runs-on: tenki-staging-standard-small-2c-4g

steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check licenses
run: .github/workflows/license.sh
run: .github/workflows/license.sh
9 changes: 4 additions & 5 deletions .github/workflows/test-vm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,14 @@ on:
- 'third_party/evmone'
- 'docker/Dockerfile'
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: Test compiler
runs-on: tenki-standard-large-plus-16c-32g
runs-on: tenki-staging-standard-small-2c-4g
strategy:
matrix:
build:
Expand Down Expand Up @@ -107,7 +106,7 @@ jobs:

fuzz:
name: VM Fuzz Tests
runs-on: tenki-standard-large-plus-16c-32g
runs-on: tenki-staging-standard-small-2c-4g
steps:
- name: Generate token
id: generate_token
Expand Down Expand Up @@ -156,7 +155,7 @@ jobs:

python-code-quality:
name: Python code quality checks
runs-on: tenki-standard-large-plus-16c-32g
runs-on: tenki-staging-standard-small-2c-4g
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -172,4 +171,4 @@ jobs:

- name: Check Python code
working-directory: scripts/vm/benchmark-analysis
run: make check
run: make check
Loading