Skip to content

Commit 678d690

Browse files
Merge branch 'master' into x86_extension_intrinsic_test
2 parents b705435 + 2683c07 commit 678d690

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+5166
-10422
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ jobs:
258258
# Check that the generated files agree with the checked-in versions.
259259
check-stdarch-gen:
260260
needs: [style]
261-
name: Check stdarch-gen-{arm, loongarch} output
261+
name: Check stdarch-gen-{arm, loongarch} output
262262
runs-on: ubuntu-latest
263263
steps:
264264
- uses: actions/checkout@v4
@@ -277,22 +277,11 @@ jobs:
277277
cargo run --bin=stdarch-gen-loongarch --release -- crates/stdarch-gen-loongarch/lasx.spec
278278
git diff --exit-code
279279
280-
build-std-detect:
281-
needs: [style]
282-
name: Build std_detect
283-
runs-on: ubuntu-latest
284-
steps:
285-
- uses: actions/checkout@v4
286-
- name: Install Rust
287-
run: rustup update nightly && rustup default nightly
288-
- run: ./ci/build-std-detect.sh
289-
290280
conclusion:
291281
needs:
292282
- docs
293283
- verify
294284
- test
295-
- build-std-detect
296285
- check-stdarch-gen
297286
runs-on: ubuntu-latest
298287
# We need to ensure this job does *not* get skipped if its dependencies fail,

.github/workflows/rustc-pull.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ jobs:
1212
if: github.repository == 'rust-lang/stdarch'
1313
uses: rust-lang/josh-sync/.github/workflows/rustc-pull.yml@main
1414
with:
15+
github-app-id: ${{ vars.APP_CLIENT_ID }}
1516
# https://rust-lang.zulipchat.com/#narrow/channel/208962-t-libs.2Fstdarch/topic/Subtree.20sync.20automation/with/528461782
1617
zulip-stream-id: 208962
1718
zulip-bot-email: "[email protected]"
1819
pr-base-branch: master
1920
branch-name: rustc-pull
2021
secrets:
2122
zulip-api-token: ${{ secrets.ZULIP_API_TOKEN }}
22-
token: ${{ secrets.GITHUB_TOKEN }}
23+
github-app-secret: ${{ secrets.APP_PRIVATE_KEY }}

Cargo.lock

Lines changed: 24 additions & 93 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,8 @@ stdarch - Rust's standard library SIMD components
44
[![Actions Status](https://github.com/rust-lang/stdarch/workflows/CI/badge.svg)](https://github.com/rust-lang/stdarch/actions)
55

66

7-
# Crates
8-
9-
This repository contains two main crates:
10-
11-
* [`core_arch`](crates/core_arch/README.md) implements `core::arch` - Rust's
12-
core library architecture-specific intrinsics, and
7+
This repository contains the [`core_arch`](crates/core_arch/README.md) crate, which implements `core::arch` - Rust's core library architecture-specific intrinsics.
138

14-
* [`std_detect`](crates/std_detect/README.md) implements `std::detect` - Rust's
15-
standard library run-time CPU feature detection.
16-
179
The `std::simd` component now lives in the
1810
[`packed_simd_2`](https://github.com/rust-lang/packed_simd) crate.
1911

ci/build-std-detect.sh

Lines changed: 0 additions & 46 deletions
This file was deleted.

ci/dox.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@ dox() {
1616
cargo clean --target "${1}"
1717

1818
cargo build --verbose --target "${1}" --manifest-path crates/core_arch/Cargo.toml
19-
cargo build --verbose --target "${1}" --manifest-path crates/std_detect/Cargo.toml
20-
2119
cargo doc --verbose --target "${1}" --manifest-path crates/core_arch/Cargo.toml
22-
cargo doc --verbose --target "${1}" --manifest-path crates/std_detect/Cargo.toml
2320
}
2421

2522
if [ -z "$1" ]; then

ci/run-docker.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ run() {
3737
--env NORUN \
3838
--env RUSTFLAGS \
3939
--env CARGO_UNSTABLE_BUILD_STD \
40-
--env RUST_STD_DETECT_UNSTABLE \
4140
--volume "${HOME}/.cargo":/cargo \
4241
--volume "$(rustc --print sysroot)":/rust:ro \
4342
--volume "$(pwd)":/checkout:ro \

0 commit comments

Comments
 (0)