From 190901a95883fbfb32cc389a6682c9eb9106fcac Mon Sep 17 00:00:00 2001 From: simuons Date: Fri, 18 Dec 2020 10:41:20 +0200 Subject: [PATCH 1/2] Tune ci workflow bazel test //... should be enough see https://github.com/bazelbuild/bazel/issues/4257 --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4dd14c..5a463b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,5 @@ jobs: with: path: ~/.cache/bazel key: bazel - - name: Run bazel build - run: bazel build //... - name: Run bazel test - run: bazel test //... + run: bazel test ... From dabddc17a2861f0d461248400b3faf5b356a86ef Mon Sep 17 00:00:00 2001 From: simuons Date: Fri, 18 Dec 2020 11:00:03 +0200 Subject: [PATCH 2/2] Try without cache --- .github/workflows/ci.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a463b9..fde5ce1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,10 +12,5 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Mount bazel cache - uses: actions/cache@v2 - with: - path: ~/.cache/bazel - key: bazel - name: Run bazel test run: bazel test ...