diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 1db500352f..d4a415e293 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -3,7 +3,6 @@ name: Code Quality Checks on: push: workflow_dispatch: - concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true @@ -11,7 +10,7 @@ concurrency: 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 @@ -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: @@ -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 diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 4eba1e79eb..b4fda8a1de 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -2,7 +2,6 @@ name: Docker on: push: - jobs: build: strategy: @@ -10,7 +9,7 @@ jobs: 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 @@ -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 \ No newline at end of file diff --git a/.github/workflows/license.yml b/.github/workflows/license.yml index 4ac52a138e..003bd881c3 100644 --- a/.github/workflows/license.yml +++ b/.github/workflows/license.yml @@ -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 \ No newline at end of file diff --git a/.github/workflows/test-vm.yml b/.github/workflows/test-vm.yml index d12bcf7709..1066826dd9 100644 --- a/.github/workflows/test-vm.yml +++ b/.github/workflows/test-vm.yml @@ -13,7 +13,6 @@ on: - 'third_party/evmone' - 'docker/Dockerfile' workflow_dispatch: - concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true @@ -21,7 +20,7 @@ concurrency: jobs: build: name: Test compiler - runs-on: tenki-standard-large-plus-16c-32g + runs-on: tenki-staging-standard-small-2c-4g strategy: matrix: build: @@ -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 @@ -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: @@ -172,4 +171,4 @@ jobs: - name: Check Python code working-directory: scripts/vm/benchmark-analysis - run: make check + run: make check \ No newline at end of file