Skip to content

Commit

Permalink
Merge pull request #2325 from hzeller/feature-20250112-update-smoke
Browse files Browse the repository at this point in the history
Feature 20250112 update smoke
  • Loading branch information
hzeller authored Jan 12, 2025
2 parents 75c38da + 2826433 commit 26188e7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/bin/make-compilation-db.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if [ "${BANT}" = "needs-to-be-compiled-locally" ]; then
# the full realpath of the resulting binary to be immune to symbolic-link
# switcharoo by bazel.
${BAZEL} build -c opt --cxxopt=-std=c++20 @bant//bant:bant >/dev/null 2>&1
BANT=$(realpath bazel-bin/external/bant*/bant/bant)
BANT=$(realpath bazel-bin/external/bant*/bant/bant | head -1)
fi

BAZEL_OPTS="-c opt --noshow_progress"
Expand Down
3 changes: 2 additions & 1 deletion .github/bin/run-format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ find . -name "*.h" -o -name "*.cc" \
# If we have buildifier installed, use that to format BUILD files
if command -v ${BUILDIFIER} >/dev/null; then
echo "Run $(buildifier --version)"
${BUILDIFIER} -lint=fix MODULE.bazel $(find . -name BUILD -o -name "*.bzl")
# TODO(hzeller): re-enable -lint=fix once compatible bazel version range again
${BUILDIFIER} MODULE.bazel $(find . -name BUILD -o -name "*.bzl")
fi

# Check if we got any diff
Expand Down
16 changes: 8 additions & 8 deletions .github/bin/smoke-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ ExpectedFailCount[lint:ibex]=14
ExpectedFailCount[project:ibex]=211
ExpectedFailCount[preprocessor:ibex]=385

ExpectedFailCount[syntax:opentitan]=65
ExpectedFailCount[lint:opentitan]=65
ExpectedFailCount[project:opentitan]=951
ExpectedFailCount[syntax:opentitan]=70
ExpectedFailCount[lint:opentitan]=70
ExpectedFailCount[project:opentitan]=1001
ExpectedFailCount[formatter:opentitan]=1
ExpectedFailCount[preprocessor:opentitan]=2560
ExpectedFailCount[preprocessor:opentitan]=2739

ExpectedFailCount[syntax:sv-tests]=77
ExpectedFailCount[lint:sv-tests]=76
Expand Down Expand Up @@ -211,11 +211,11 @@ ExpectedFailCount[preprocessor:scr1]=46
ExpectedFailCount[project:serv]=1
ExpectedFailCount[preprocessor:serv]=1

ExpectedFailCount[syntax:basejump_stl]=481
ExpectedFailCount[lint:basejump_stl]=481
ExpectedFailCount[project:basejump_stl]=596
ExpectedFailCount[syntax:basejump_stl]=482
ExpectedFailCount[lint:basejump_stl]=482
ExpectedFailCount[project:basejump_stl]=599
ExpectedFailCount[formatter:basejump_stl]=1
ExpectedFailCount[preprocessor:basejump_stl]=632
ExpectedFailCount[preprocessor:basejump_stl]=635

ExpectedFailCount[syntax:opl3_fpga]=3
ExpectedFailCount[lint:opl3_fpga]=3
Expand Down

0 comments on commit 26188e7

Please sign in to comment.