Skip to content

Commit 91b2486

Browse files
authored
Merge pull request #104 from rust-lang/nosys
skip all of sys::
2 parents 7a1c844 + 3854684 commit 91b2486

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ jobs:
9191
env:
9292
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9393
run: |
94-
# If this is not the first of the month, stop here.
95-
if [[ $(date -u +%d) != "01" ]]; then
96-
echo "It's not the first of a month, so there will be no PR."
94+
# If the `rust-version` file already has the right month, stop here
95+
if grep -q "nightly-$(date -u +%Y-%m)" rust-version; then
96+
echo "`rust-version` is already reasonably up-to-date, so there will be no PR."
9797
exit 0
9898
fi
9999
# Create commit

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To run the tests yourself, make sure you have Miri installed (`rustup component
1111
```shell
1212
MIRIFLAGS="-Zmiri-disable-isolation" ./run-test.sh core
1313
MIRIFLAGS="-Zmiri-disable-isolation" ./run-test.sh alloc
14-
MIRIFLAGS="-Zmiri-disable-isolation" ./run-test.sh std -- --skip fs:: --skip net:: --skip process:: --skip sys::pal::
14+
MIRIFLAGS="-Zmiri-disable-isolation" ./run-test.sh std -- --skip fs:: --skip net:: --skip process:: --skip sys::
1515
```
1616

1717
This will run the test suite of the standard library of your current toolchain.

ci-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ alloc)
5555
;;
5656
std)
5757
# Modules that we skip because they need a lot of shims we don't support.
58-
SKIP="fs:: net:: process:: sys::fd:: sys::pal::"
58+
SKIP="fs:: net:: process:: sys::"
5959

6060
# A 64bit little-endian and a 32bit big-endian target,
6161
# as well as targets covering all major OSes and both ABIs on Windows.

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2025-08-01
1+
nightly-2025-09-06

0 commit comments

Comments
 (0)