-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: correct .bazelignore per meteorcloudy
- Loading branch information
1 parent
48a051a
commit dc3512e
Showing
2 changed files
with
16 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |