Skip to content

Commit

Permalink
Generate execution logs
Browse files Browse the repository at this point in the history
  • Loading branch information
aherrmann committed Apr 30, 2020
1 parent f76d01c commit 97ba773
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,16 @@ jobs:
- name: Test
run: |
"${GITHUB_WORKSPACE}/bin/bazel" test //...
"${GITHUB_WORKSPACE}/bin/bazel" test //... \
--execution_log_json_file=test_log_execution.json \
--experimental_workspace_rules_log_file=test_log_workspace.pb
touch test_log_execution.json test_log_workspace.pb
- name: Build
run: |
"${GITHUB_WORKSPACE}/bin/bazel" build //...
- uses: actions/upload-artifact@v1
with:
name: bazel-logs-${{ matrix.os }}
path: test_log_*

0 comments on commit 97ba773

Please sign in to comment.