From 36d0471bc634ef7430ffcbc9d07f3f020534d8ce Mon Sep 17 00:00:00 2001 From: Chris Olszewski Date: Thu, 16 Jan 2025 16:55:59 -0500 Subject: [PATCH 1/2] chore(ci): move back to GHA --- .github/workflows/lint.yml | 12 ++---------- .github/workflows/test-js-packages.yml | 6 +----- .github/workflows/turborepo-test.yml | 21 +++------------------ 3 files changed, 6 insertions(+), 33 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b0355d7db8095..99d9c4e19ec95 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -26,11 +26,7 @@ permissions: jobs: rust_lint: name: Rust lints - runs-on: - - "self-hosted" - - "linux" - - "x64" - - "metal" + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 @@ -54,11 +50,7 @@ jobs: format_lint: name: Formatting - runs-on: - - "self-hosted" - - "linux" - - "x64" - - "metal" + runs-on: ubuntu-latest env: TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} TURBO_TEAM: ${{ vars.TURBO_TEAM }} diff --git a/.github/workflows/test-js-packages.yml b/.github/workflows/test-js-packages.yml index ef022f82f8437..a1e1f747aae2d 100644 --- a/.github/workflows/test-js-packages.yml +++ b/.github/workflows/test-js-packages.yml @@ -30,11 +30,7 @@ jobs: matrix: os: - name: ubuntu - runner: - - "self-hosted" - - "linux" - - "x64" - - "metal" + runner: ubuntu-latest - name: macos runner: macos-13 node-version: diff --git a/.github/workflows/turborepo-test.yml b/.github/workflows/turborepo-test.yml index f15f4fcaefa3e..624c73b9c483f 100644 --- a/.github/workflows/turborepo-test.yml +++ b/.github/workflows/turborepo-test.yml @@ -120,11 +120,7 @@ jobs: rust_lint: name: Rust lints - runs-on: - - "self-hosted" - - "linux" - - "x64" - - "metal" + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -153,11 +149,7 @@ jobs: rust_check: # We test dependency changes only on main name: Turborepo rust check - runs-on: - - "self-hosted" - - "linux" - - "x64" - - "metal" + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -178,18 +170,11 @@ jobs: matrix: os: - name: ubuntu - runner: - - "self-hosted" - - "linux" - - "x64" - - "metal" - nextest: linux + runner: ubuntu-latest - name: macos runner: macos-13 - nextest: mac - name: windows runner: windows-latest - nextest: windows-tar runs-on: ${{ matrix.os.runner }} name: Turborepo Rust testing on ${{ matrix.os.name }} steps: From 3c2bb50d1e0468ecd648311b93e9cee70742562b Mon Sep 17 00:00:00 2001 From: Chris Olszewski Date: Thu, 16 Jan 2025 17:08:45 -0500 Subject: [PATCH 2/2] bump rust stuff --- crates/turborepo/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/turborepo/src/main.rs b/crates/turborepo/src/main.rs index 7faaa368cab23..b88a6ed34989e 100644 --- a/crates/turborepo/src/main.rs +++ b/crates/turborepo/src/main.rs @@ -1,3 +1,4 @@ +// Bump all rust changes #![deny(clippy::all)] use std::process;