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

Rollup of 7 pull requests #136087

Merged
merged 20 commits into from
Jan 26, 2025
Merged
Changes from 2 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
9a81dc9
compiler: Set `target_abi = "ilp32e"` on all riscv32e targets
workingjubilee Dec 15, 2024
a9495e0
change lookup from `OsString.inner.inner.0` -> `OsString.inner.inner.…
Walnut356 Jan 21, 2025
0d90d47
TRPL: more backward-compatible Edition changes
chriskrycho Jan 21, 2025
9cfc420
TRPL: integrate edits to Chapter 17
chriskrycho Jan 21, 2025
84c8015
Add new target for supporting Neutrino QNX 6.1 with `io-socket` netwo…
flba-eb Nov 28, 2024
efe53dd
Add support for QNX 7.1 with io-sock on x64
flba-eb Nov 29, 2024
62661f2
Move common code to mod nto_qnx
flba-eb Nov 30, 2024
3f045c9
add nto80 x86-64 and aarch64 target
AkhilTThomas Dec 6, 2024
46a0333
Update documentation to include QNX 8.0
flba-eb Dec 10, 2024
0462826
Review nto-qnx.md.
jonathanpallant Jan 13, 2025
2d11559
Add an `unchecked_div` alias to the `Div<NonZero<_>>` impls
scottmcm Jan 24, 2025
8eebbba
ci.py: check the return code in `run-local`
cuviper Jan 23, 2025
1d97a3e
Remove extra whitespace from rustdoc breadcrumbs for copypasting
kornelski Jan 17, 2025
0d0e841
Rollup merge of #133631 - flba-eb:add_nto_qnx71_iosock_support, r=wor…
jhpratt Jan 26, 2025
cecdb32
Rollup merge of #134358 - workingjubilee:configure-my-riscv-abi, r=fm…
jhpratt Jan 26, 2025
e730dfc
Rollup merge of #135812 - Walnut356:gdb_osstring, r=Mark-Simulacrum
jhpratt Jan 26, 2025
666aaf9
Rollup merge of #135842 - chriskrycho:trpl-2024-edition-more, r=ehuss
jhpratt Jan 26, 2025
a70b0d5
Rollup merge of #135946 - kornelski:rustdoc-path-space, r=notriddle
jhpratt Jan 26, 2025
c40936f
Rollup merge of #135953 - cuviper:ci-run-local-fail, r=Kobzol
jhpratt Jan 26, 2025
359c504
Rollup merge of #136019 - scottmcm:alias-unchecked-div, r=Mark-Simula…
jhpratt Jan 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ci/github-actions/ci.py
Original file line number Diff line number Diff line change
@@ -249,7 +249,7 @@ def run_workflow_locally(job_data: Dict[str, Any], job_name: str, pr_jobs: bool)
env = os.environ.copy()
env.update(custom_env)

subprocess.run(args, env=env)
subprocess.run(args, env=env, check=True)


def calculate_job_matrix(job_data: Dict[str, Any]):