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: 1 addition & 6 deletions .github/actionlint.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
self-hosted-runner:
# Labels of self-hosted runner in array of strings.
labels:
- buildjet-2vcpu-ubuntu-2204
- buildjet-4vcpu-ubuntu-2204
- buildjet-8vcpu-ubuntu-2204
- buildjet-16vcpu-ubuntu-2204
- warp-ubuntu-latest-x64-4x
labels: []
# Configuration variables in array of strings defined in your repository or
# organization. `null` means disabling configuration variables check.
# Empty array means no configuration variable is allowed.
Expand Down
17 changes: 0 additions & 17 deletions .github/workflows/delete-buildjet-cache.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/forester-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ env:
jobs:
test:
name: Forester e2e test
runs-on: warp-ubuntu-latest-x64-4x
runs-on: ubuntu-latest
timeout-minutes: 60

services:
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:

compressible-tests:
name: Forester compressible tests
runs-on: warp-ubuntu-latest-x64-4x
runs-on: ubuntu-latest
timeout-minutes: 60

services:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/programs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
system-programs:
name: ${{ matrix.test-group }}
if: github.event.pull_request.draft == false
runs-on: warp-ubuntu-latest-x64-4x
runs-on: ubuntu-latest
timeout-minutes: 90

services:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/prover-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
jobs:
build:
if: github.event_name == 'push' || github.event.pull_request.draft == false
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout sources
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:

test-no-redis:
needs: build
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: ubuntu-latest
timeout-minutes: 90
strategy:
fail-fast: false
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:

test-with-redis:
needs: build
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
(github.event_name == 'pull_request' &&
github.event.pull_request.draft == false &&
github.event.pull_request.base.ref == 'main')
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout sources
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
(github.event_name == 'pull_request' &&
github.event.pull_request.draft == false &&
github.event.pull_request.base.ref == 'main')
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout sources
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
github.event_name == 'pull_request' &&
github.event.pull_request.draft == false &&
startsWith(github.event.pull_request.base.ref, 'release')
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
- name: Checkout sources
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:

lean-verification:
needs: build
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout sources
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ env:
jobs:
test:
if: github.event.pull_request.draft == false
runs-on: warp-ubuntu-latest-x64-4x
runs-on: ubuntu-latest

strategy:
matrix:
Expand Down
Loading