Skip to content

Commit

Permalink
build: work on diagnosing flakey macOS tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bpowers committed Mar 12, 2020
1 parent 737ea01 commit d4c7b11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Expand Up @@ -38,18 +38,18 @@ jobs:
./bazel test -c dbg //src:unit-tests
- name: build tests and binary
run: |
make
make -j1
macOS_bazel:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: build in debug mode
run: |
./bazel test -c dbg //src:unit-tests
./bazel test -c dbg //src:unit-tests --test_output=all --cache_test_results=no --runs_per_test=5
- name: build tests and binary
run: |
make
make -j1
#Windows_MinGW:
#
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -42,7 +42,7 @@ build lib:
./bazel build $(BAZEL_CONFIG) -c opt //src:$(LIB)

test check:
./bazel test //src:unit-tests --test_output=errors --action_env="GTEST_COLOR=1"
./bazel test //src:unit-tests --test_output=all --cache_test_results=no --runs_per_test=5 --action_env="GTEST_COLOR=1"

install:
install -c -m 0755 bazel-out/$(BAZEL_PREFIX)-opt/bin/src/$(FS_LIB) $(PREFIX)/lib/$(INSTALL_LIB)
Expand Down

0 comments on commit d4c7b11

Please sign in to comment.