Skip to content

Commit 067c8bb

Browse files
authored
Merge branch 'main' into cargo_target_dir
2 parents 52b8d39 + bc11211 commit 067c8bb

Some content is hidden

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

53 files changed

+1842
-847
lines changed

.envrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
if ! has nix_direnv_version || ! nix_direnv_version 3.0.6; then
2+
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.6/direnvrc" "sha256-RYcUJaRMf8oF5LznDrlCXbkOQrywm0HDv1VjYGaJGdM="
3+
fi
4+
5+
use flake

.github/workflows/GnuTests.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ jobs:
273273
have_new_failures="true"
274274
else
275275
MSG="Skip an intermittent issue ${LINE} (fails in this run but passes in the 'main' branch)"
276-
echo "::warning ::$MSG"
276+
echo "::notice ::$MSG"
277277
echo $MSG >> ${COMMENT_LOG}
278278
echo ""
279279
fi
@@ -291,7 +291,7 @@ jobs:
291291
echo $MSG >> ${COMMENT_LOG}
292292
else
293293
MSG="Skipping an intermittent issue ${LINE} (passes in this run but fails in the 'main' branch)"
294-
echo "::warning ::$MSG"
294+
echo "::notice ::$MSG"
295295
echo $MSG >> ${COMMENT_LOG}
296296
echo ""
297297
fi
@@ -340,7 +340,10 @@ jobs:
340340
# Compare root tests
341341
compare_tests '${{ steps.vars.outputs.path_GNU_tests }}/test-suite-root.log' "${ROOT_REF_LOG_FILE}" "root"
342342
343-
if test -n "${have_new_failures}" ; then exit -1 ; fi
343+
if [ -n "${have_new_failures}" ]; then
344+
echo "::error ::Found new test failures"
345+
exit 1
346+
fi
344347
- name: Upload comparison log (for GnuComment workflow)
345348
if: success() || failure() # run regardless of prior step success/failure
346349
uses: actions/upload-artifact@v4

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ lib*.a
1515
*.iml
1616
### macOS ###
1717
.DS_Store
18+
19+
### direnv ###
20+
/.direnv/

.vscode/cspell.dictionaries/workspace.wordlist.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ vmsplice
136136

137137
# * vars/libc
138138
COMFOLLOW
139+
EXDEV
139140
FILENO
140141
FTSENT
141142
HOSTSIZE

0 commit comments

Comments
 (0)