-
Notifications
You must be signed in to change notification settings - Fork 555
Parse rustc target names
#1413
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
Merged
Merged
Parse rustc target names
#1413
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
2e98453
Parse target triples
madsmtm 39accfd
Use `env` in GH action
madsmtm 23ca474
Merge a few match arms
madsmtm b4510e0
Make component parsing a bit clearer
madsmtm 211b716
Update outdated comment
madsmtm 2d1d641
ilp32e is intentional
madsmtm 4b93f37
Appease clippy
madsmtm 9ef2bd9
fortanix and uwp ABIs are intentional
madsmtm 84c7f6c
Avoid "target triple", use "target name" instead
madsmtm 608777d
Fix when test-rustc-target.yml runs
madsmtm c819866
Fix wording
madsmtm 7025128
Merge branch 'main' into target-parsing
madsmtm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| name: Test nightly `rustc` targets and add issue comment if changed | ||
|
|
||
| on: | ||
| workflow_dispatch: # Allow running on-demand | ||
| schedule: | ||
| - cron: '0 3 * * 1,4' # Every Monday and Thursdag | ||
| push: | ||
| branches: | ||
| - 'main' | ||
| paths: | ||
| - 'dev-tools/gen-target-info/**' | ||
|
|
||
| jobs: | ||
| regenerate: | ||
| if: github.repository_owner == 'rust-lang' | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| persist-credentials: true | ||
|
|
||
| - name: Install current nightly Rust | ||
| run: | | ||
| rustup toolchain install nightly --no-self-update --profile minimal | ||
| rustup default nightly | ||
| - run: cargo update | ||
| - uses: Swatinem/rust-cache@v2 | ||
|
|
||
| - name: Test with `RUSTFLAGS=--cfg=rustc_target_test cargo test --lib` | ||
| id: test | ||
| continue-on-error: true # We want to open an issue if it fails | ||
| run: RUSTFLAGS=--cfg=rustc_target_test cargo test --lib 2>&1 | tee test_output.txt | ||
|
|
||
| # Added to https://github.com/rust-lang/cc-rs/issues/1426 | ||
| - name: Add issue comment if test failed | ||
| if: steps.test.outcome == 'failure' | ||
| env: | ||
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| run: | | ||
| gh issue comment 1426 --body " | ||
| Failed parsing `rustc` target on `$(rustc --version)`. | ||
|
|
||
| <details><summary>Test output</summary> | ||
| <p> | ||
| \`\`\` | ||
| $(cat test_output.txt) | ||
| \`\`\` | ||
| </p> | ||
| </details> | ||
| " --head $(git branch --show-current) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,3 @@ pub use target_specs::*; | |
|
|
||
| mod read; | ||
| pub use read::*; | ||
|
|
||
| mod write; | ||
| pub use write::*; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.