Build and test internally #1092
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and test internally | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
build_and_test_internally: | |
runs-on: ubuntu-latest | |
env: | |
BAZELISK_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
name: Build and test internally (ubuntu-latest, Bazel last_green workspace, JDK 17) | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Mount Bazel disk cache | |
uses: actions/cache@v2 | |
with: | |
path: "/home/runner/.cache/bazel-disk" | |
key: bazel-disk-cache-internal | |
- name: Build from main workspace with layering_check | |
env: | |
USE_BAZEL_VERSION: "last_green" | |
run: bazelisk build --config=ci --disk_cache="/home/runner/.cache/bazel-disk" //... @fmeum_rules_jni_tests//... | |
- name: Run tests from main workspace | |
env: | |
USE_BAZEL_VERSION: "last_green" | |
run: bazelisk test --config=ci --disk_cache="/home/runner/.cache/bazel-disk" //... @fmeum_rules_jni_tests//... | |
- name: Upload test logs | |
if: always() | |
uses: actions/upload-artifact@v2 | |
with: | |
name: testlogs-internal | |
# https://github.com/actions/upload-artifact/issues/92#issuecomment-711107236 | |
path: | | |
${{ github.workspace }}/bazel-testlogs*/**/test.log |