Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature 20250112 update smoke #2325

Merged
merged 2 commits into from
Jan 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading