-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '2e8386e9fb3506cef991d04f8b3bc78f9a0c2630' into subtree-…
…update_cg_gcc_2023-11-17
- Loading branch information
Showing
14 changed files
with
104 additions
and
41 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 |
---|---|---|
|
@@ -92,8 +92,10 @@ jobs: | |
- name: Build | ||
run: | | ||
./y.sh prepare --only-libcore | ||
./y.sh build --release --release-sysroot | ||
cargo test | ||
# TODO: remove `--features master` when it is back to the default. | ||
./y.sh build --release --release-sysroot --features master | ||
# TODO: remove --features master when it is back to the default. | ||
cargo test --features master | ||
- name: Clean | ||
if: ${{ !matrix.cargo_runner }} | ||
|
@@ -111,12 +113,14 @@ jobs: | |
uses: actions-rs/[email protected] | ||
with: | ||
command: build | ||
args: --release | ||
# TODO: remove `--features master` when it is back to the default. | ||
args: --release --features master | ||
|
||
- name: Run tests | ||
if: ${{ !matrix.cargo_runner }} | ||
run: | | ||
./test.sh --release --clean --release-sysroot --build-sysroot --mini-tests --std-tests --test-libcore | ||
# TODO: remove `--features master` when it is back to the default. | ||
./test.sh --release --clean --release-sysroot --build-sysroot --mini-tests --std-tests --test-libcore --features master | ||
- name: Run stdarch tests | ||
if: ${{ !matrix.cargo_runner }} | ||
|
This file contains 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 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 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 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 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 |
---|---|---|
@@ -1,25 +1,25 @@ | ||
From 7bcd24ec6d4a96121874cb1ae5a23ea274aeff34 Mon Sep 17 00:00:00 2001 | ||
From a5663265f797a43c502915c356fe7899c16cee92 Mon Sep 17 00:00:00 2001 | ||
From: None <[email protected]> | ||
Date: Thu, 19 Oct 2023 13:12:51 -0400 | ||
Date: Sat, 18 Nov 2023 10:50:36 -0500 | ||
Subject: [PATCH] [core] Disable portable-simd test | ||
|
||
--- | ||
library/core/tests/lib.rs | 2 -- | ||
1 file changed, 2 deletions(-) | ||
|
||
diff --git a/library/core/tests/lib.rs b/library/core/tests/lib.rs | ||
index 5814ed4..194ad4c 100644 | ||
index d0a119c..76fdece 100644 | ||
--- a/library/core/tests/lib.rs | ||
+++ b/library/core/tests/lib.rs | ||
@@ -90,7 +90,6 @@ | ||
@@ -89,7 +89,6 @@ | ||
#![feature(never_type)] | ||
#![feature(unwrap_infallible)] | ||
#![feature(pointer_byte_offsets)] | ||
#![feature(pointer_is_aligned)] | ||
-#![feature(portable_simd)] | ||
#![feature(ptr_metadata)] | ||
#![feature(lazy_cell)] | ||
#![feature(unsized_tuple_coercion)] | ||
@@ -157,7 +156,6 @@ mod pin; | ||
@@ -155,7 +154,6 @@ mod pin; | ||
mod pin_macro; | ||
mod ptr; | ||
mod result; | ||
|
@@ -28,5 +28,5 @@ index 5814ed4..194ad4c 100644 | |
mod str; | ||
mod str_lossy; | ||
-- | ||
2.42.0 | ||
2.42.1 | ||
|
This file contains 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[toolchain] | ||
channel = "nightly-2023-10-21" | ||
channel = "nightly-2023-11-17" | ||
components = ["rust-src", "rustc-dev", "llvm-tools-preview"] |
This file contains 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 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 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