Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): remove invalid action argument #7978

Merged
merged 2 commits into from Apr 16, 2024
Merged

chore(ci): remove invalid action argument #7978

merged 2 commits into from Apr 16, 2024

Conversation

mehulkar
Copy link
Contributor

@mehulkar mehulkar commented Apr 16, 2024

Closes TURBO-2814

Copy link

vercel bot commented Apr 16, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
examples-gatsby-web 🔄 Building (Inspect) Visit Preview 💬 Add feedback Apr 16, 2024 2:40am
examples-kitchensink-blog 🔄 Building (Inspect) Visit Preview 💬 Add feedback Apr 16, 2024 2:40am
examples-native-web 🔄 Building (Inspect) Visit Preview 💬 Add feedback Apr 16, 2024 2:40am
examples-nonmonorepo ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 16, 2024 2:40am
turbo-turbo-tracing-next-plugin ❌ Failed (Inspect) Apr 16, 2024 2:40am
6 Ignored Deployments
Name Status Preview Comments Updated (UTC)
examples-basic-web ⬜️ Ignored (Inspect) Visit Preview Apr 16, 2024 2:40am
examples-designsystem-docs ⬜️ Ignored (Inspect) Visit Preview Apr 16, 2024 2:40am
examples-svelte-web ⬜️ Ignored (Inspect) Visit Preview Apr 16, 2024 2:40am
examples-tailwind-web ⬜️ Ignored (Inspect) Visit Preview Apr 16, 2024 2:40am
examples-vite-web ⬜️ Ignored (Inspect) Visit Preview Apr 16, 2024 2:40am
rust-docs ⬜️ Ignored (Inspect) Visit Preview Apr 16, 2024 2:40am

Copy link
Contributor

github-actions bot commented Apr 16, 2024

🟢 Turbopack Benchmark CI successful 🟢

Thanks

Copy link
Contributor

✅ This change can build next-swc

examples tests don't run on a matrix, so it will
never be on windows. The default is already false.
Copy link
Contributor

github-actions bot commented Apr 16, 2024

⚠️ CI failed ⚠️

The following steps have failed in CI:

  • Turbopack Rust tests (mac/win, non-blocking)

See workflow summary for details

@@ -221,7 +221,7 @@ jobs:

- uses: ./.github/actions/setup-turborepo-environment
with:
windows: ${{ matrix.os.name == 'windows' }}
windows: ${{ matrix.os.runner == 'windows-latest' }}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was there an issue with the previous comparison? Just making sure I'm not missing something with this change.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you aren't missing anything. I just realized that runner is a real thing in the matrix, where the name key is made up by the user (us), and could be dropped with no effect on the matrix. So I'd rather compare to the real thing. E.g in integration tests, I didn't even put a name , because it doesn't matter:

matrix:
os:
- runner: ubuntu-latest
- runner: macos-latest
- runner: windows-latest

@@ -658,7 +654,7 @@ jobs:
- name: Setup Turborepo Environment
uses: ./.github/actions/setup-turborepo-environment
with:
windows: ${{ matrix.os.name == 'windows' }}
windows: ${{ matrix.os.runner == 'windows-latest' }}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Again, was there an issue with the previous comparison with name?

@mehulkar mehulkar merged commit 6cba165 into main Apr 16, 2024
56 of 59 checks passed
@mehulkar mehulkar deleted the mehulkar-patch-1 branch April 16, 2024 18:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants