Skip to content

Commit

Permalink
fix: correct .bazelignore per meteorcloudy
Browse files Browse the repository at this point in the history
  • Loading branch information
chickenandpork committed Jan 3, 2025
1 parent 48a051a commit dc3512e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
8 changes: 6 additions & 2 deletions .bazelignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# ignore the examples which are used to document suggested usage, validate this project, and -- in future -- repro issues
examples/**
# ignore the examples which are used to document suggested usage, validate this project,
# and -- in future -- repro issues that may arise. Per meteorcloudy, .bazelignore is transitory,
# but its own format, not gitignore format
docs
bazel-*
examples

13 changes: 10 additions & 3 deletions .github/workflows/bazel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,20 @@ jobs:
- uses: actions/[email protected]
# https://github.com/bazelbuild/bazel/issues/11062
-
run: bazel run //docs:collate_docs
run: |
echo 'examples' > .bazelignore # remove '//docs'
bazel run //docs:collate_docs
-
run: bazel build //...
run: |
echo 'docs' > .bazelignore
echo 'examples' >> .bazelignore
bazel build //...
-
run: bazel test //... --test_output=errors --test_summary=detailed
-
name: Integration Tests (ie Proof Examples)
run: bazel test //examples:all_integration_tests --test_output=errors --test_summary=detailed
run: |
echo 'docs' > .bazelignore
bazel test //examples:all_integration_tests --test_output=errors --test_summary=detailed
-
run: bazel shutdown

0 comments on commit dc3512e

Please sign in to comment.