Skip to content

Commit c6dc792

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

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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

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)