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 04e2e87 commit d058c27Copy full SHA for d058c27
.github/workflows/ci.yml
@@ -47,8 +47,19 @@ 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
54
- name: Build
55
56
"${GITHUB_WORKSPACE}/bin/bazel" build //...
57
+
58
+ - name: Bundle Bazel Logs
59
+ run: |
60
+ tar czf test_logs_${{ matrix.os }}.tgz test_log_execution.json test_log_workspace.pb
61
62
+ - uses: actions/upload-artifact@v1
63
+ with:
64
+ name: bazel-logs-${{ matrix.os }}
65
+ path: test_logs_${{ matrix.os }}.tgz
0 commit comments