We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f76d01c commit 97ba773Copy full SHA for 97ba773
.github/workflows/ci.yml
@@ -47,8 +47,16 @@ jobs:
47
48
- name: Test
49
run: |
50
- "${GITHUB_WORKSPACE}/bin/bazel" test //...
+ "${GITHUB_WORKSPACE}/bin/bazel" test //... \
51
+ --execution_log_json_file=test_log_execution.json \
52
+ --experimental_workspace_rules_log_file=test_log_workspace.pb
53
+ touch test_log_execution.json test_log_workspace.pb
54
55
- name: Build
56
57
"${GITHUB_WORKSPACE}/bin/bazel" build //...
58
+
59
+ - uses: actions/upload-artifact@v1
60
+ with:
61
+ name: bazel-logs-${{ matrix.os }}
62
+ path: test_log_*
0 commit comments