Skip to content

Commit 4c7fd2d

Browse files
committed
Minor adjustments to scripts so CI passes with ctest
1 parent 1a2f652 commit 4c7fd2d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ci/style.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ done < "$tmpfile"
6060
rm "$tmpfile"
6161

6262
if shellcheck --version ; then
63-
find . -name '*.sh' -print0 | xargs -0 shellcheck
63+
# FIXME(ctest): update ctest scripts so we don't need to exclude them
64+
find . -name '*.sh' -not -path './ctest/*' -print0 | xargs -0 shellcheck
6465
else
6566
echo "shellcheck not found"
6667
exit 1

ctest/testcrate/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
authors = ["Alex Crichton <alex@alexcrichton.com>"]
55
build = "build.rs"
66
edition = "2021"
7+
publish = false
78

89
[build-dependencies]
910
ctest2 = { path = ".." }

0 commit comments

Comments
 (0)