Skip to content

Commit

Permalink
chore: remove windows input action
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-olszewski committed Jul 5, 2024
1 parent 667fb5d commit 61bcb0b
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 13 deletions.
4 changes: 0 additions & 4 deletions .github/actions/setup-rust/action.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: "Turbo Rust Setup"
description: "Sets up the Rust toolchain for CI"
inputs:
windows:
description: 'Set to "true" if setting up for Windows'
required: false
default: "false"
targets:
description: "Comma-separated list of target triples to install for this toolchain"
required: false
Expand Down
5 changes: 0 additions & 5 deletions .github/actions/setup-turborepo-environment/action.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: "Setup Turborepo Environment"
description: "Sets up development environment for turborepo"
inputs:
windows:
description: 'Set to "true" if setting up for Windows'
required: false
default: "false"
github-token:
description: "GitHub token. You can pass secrets.GITHUB_TOKEN"
required: true
Expand All @@ -25,7 +21,6 @@ runs:
- name: "Setup Rust"
uses: ./.github/actions/setup-rust
with:
windows: ${{ inputs.windows }}
shared-cache-key: turborepo-debug-build
cache-key: ${{ inputs.target }}
save-cache: true
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/bench-turborepo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ jobs:
- name: Setup Turborepo Environment
uses: ./.github/actions/setup-turborepo-environment
with:
windows: ${{ matrix.os.name == 'windows' }}
github-token: "${{ secrets.GITHUB_TOKEN }}"

- name: Build Turborepo from source
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/turborepo-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ jobs:
- name: Setup Turborepo Environment
uses: ./.github/actions/setup-turborepo-environment
with:
windows: ${{ matrix.os.runner == 'windows-latest' }}
github-token: "${{ secrets.GITHUB_TOKEN }}"
node-version: "18.20.2"

Expand Down Expand Up @@ -193,7 +192,6 @@ jobs:
- name: Setup Turborepo Environment
uses: ./.github/actions/setup-turborepo-environment
with:
windows: ${{ matrix.os.runner == 'windows-latest' }}
github-token: "${{ secrets.GITHUB_TOKEN }}"
node-version: "18.20.2"

Expand Down Expand Up @@ -373,7 +371,6 @@ jobs:
- name: Setup Turborepo Environment
uses: ./.github/actions/setup-turborepo-environment
with:
windows: ${{ matrix.os.runner == 'windows-latest' }}
github-token: "${{ secrets.GITHUB_TOKEN }}"
node-version: "18.20.2"

Expand Down

0 comments on commit 61bcb0b

Please sign in to comment.