Skip to content

Commit 09cdd4c

Browse files
authored
Merge pull request #2436 from hzeller/feature-20250714-keep-7
Toolchain selection broke with bazel 8; force bazel 7 for now.
2 parents 98bdb38 + 2dc3617 commit 09cdd4c

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.bazelversion

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7.6.0

.github/bin/check-potential-problems.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,11 @@ if [ $? -eq 0 ]; then
108108
EXIT_CODE=1
109109
fi
110110

111-
if [ -e .bazelversion ]; then
112-
echo "Don't use .bazelversion. It is a poorly implemented bazel feature that does not support semantic versioning. Instead, make the repo work with all currently active bazel versions."
113-
EXIT_CODE=1
114-
fi
111+
# Need to skip this until https://github.com/chipsalliance/verible/issues/2435
112+
# resolved.
113+
#if [ -e .bazelversion ]; then
114+
# echo "Don't use .bazelversion. It is a poorly implemented bazel feature that does not support semantic versioning. Instead, make the repo work with all currently active bazel versions."
115+
# EXIT_CODE=1
116+
#fi
115117

116118
exit "${EXIT_CODE}"

0 commit comments

Comments
 (0)