diff --git a/.github/workflows/lre.yaml b/.github/workflows/lre.yaml index a1ab587a7..ede7513fe 100644 --- a/.github/workflows/lre.yaml +++ b/.github/workflows/lre.yaml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - os: [large-ubuntu-22.04] + os: [ubuntu-22.04] name: Local / ${{ matrix.os }} runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e68e7d30b..6e4d60f0c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ on: jobs: docker-compose-compiles-nativelink: # The type of runner that the job will run on. - runs-on: large-ubuntu-22.04 + runs-on: ubuntu-22.04 strategy: matrix: # Which OS versions we will test on. @@ -66,7 +66,7 @@ jobs: ' 2>&1 | ( ! grep ' PASSED in ' ) # If we get PASSED without (cache) it means there's a cache issue. integration-tests: - runs-on: large-ubuntu-22.04 + runs-on: ubuntu-22.04 strategy: matrix: # Which OS versions we will test on. diff --git a/.github/workflows/native-bazel.yaml b/.github/workflows/native-bazel.yaml index 5c7d2d1a2..2d3a1c4b5 100644 --- a/.github/workflows/native-bazel.yaml +++ b/.github/workflows/native-bazel.yaml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - os: [large-ubuntu-20.04, large-ubuntu-22.04] + os: [ubuntu-20.04, ubuntu-22.04] name: ${{ matrix.os }} runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/native-cargo.yaml b/.github/workflows/native-cargo.yaml index 2298c3d80..d1a464d97 100644 --- a/.github/workflows/native-cargo.yaml +++ b/.github/workflows/native-cargo.yaml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - os: [large-ubuntu-20.04, large-ubuntu-22.04, windows-2022] + os: [ubuntu-20.04, ubuntu-22.04, windows-2022] toolchain: [stable] name: ${{ matrix.os }} / ${{ matrix.toolchain }} runs-on: ${{ matrix.os }} diff --git a/.github/workflows/nix.yaml b/.github/workflows/nix.yaml index d227c9669..820218d47 100644 --- a/.github/workflows/nix.yaml +++ b/.github/workflows/nix.yaml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - os: [large-ubuntu-22.04] + os: [ubuntu-22.04] name: Bazel Dev / ${{ matrix.os }} runs-on: ${{ matrix.os }} steps: @@ -47,7 +47,7 @@ jobs: strategy: fail-fast: false matrix: - os: [large-ubuntu-22.04] + os: [ubuntu-22.04] name: Cargo Dev / ${{ matrix.os }} runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/sanitizers.yaml b/.github/workflows/sanitizers.yaml index d9ca3a856..45eb3e2ec 100644 --- a/.github/workflows/sanitizers.yaml +++ b/.github/workflows/sanitizers.yaml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - os: [large-ubuntu-22.04] + os: [ubuntu-22.04] sanitizer: [asan] name: ${{ matrix.sanitizer }} / ${{ matrix.os }} runs-on: ${{ matrix.os }}