Add bazel logs upload to GHA (#13251)

This commit is contained in:
Simon Mo
2021-01-13 15:17:11 -08:00
committed by GitHub
parent 15501a4151
commit b257cb7d98
4 changed files with 54 additions and 8 deletions
+11
View File
@@ -94,6 +94,17 @@ jobs:
. ./ci/travis/ci.sh test_python
. ./ci/travis/ci.sh test_core
. ./ci/travis/ci.sh test_wheels
- name: Upload test result
if: github.repository == 'ray-project/ray' && github.event_name != 'pull_request'
shell: bash -e -o pipefail -l {0}
env:
# TODO: upload this secret to github
BAZEL_LOG_BUCKET_ACCESS_KEY: ${{ secrets.BAZEL_LOG_BUCKET_ACCESS_KEY }}
TRAVIS_BRANCH: ${{ github.ref }}
TRAVIS_COMMIT: ${{ github.sha }}
TRAVIS_JOB_ID: ${{ github.run_id }}
run: |
./ci/travis/upload_build_info.sh
- name: Run Clang Include-What-You-Use
continue-on-error: true
if: runner.os == 'Linux'