Skip to content

CI

CI #786

Workflow file for this run

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Format reference: https://docs.github.com/en/actions/reference
name: CI
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#on
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
# Daily at 12pm UTC
- cron: '0 12 * * *'
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobs
jobs:
build:
strategy:
fail-fast: false
matrix:
test-type: [CI, SAMPLES]
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'zulu'
java-package: jdk
- name: Checkout current commit
uses: actions/checkout@v3
- name: Cache Bazel repositories
uses: actions/cache@v3
with:
path: ~/bazel-repository-cache
key: bazel-repositories-${{hashFiles('**/WORKSPACE', '**.bzl')}}
restore-keys: |
bazel-repositories-
- name: Cache Bazel results
uses: actions/cache@v3
with:
path: ~/bazel-action-cache
key: bazel-actions-${{runner.os}}-${{github.sha}}
restore-keys: |
bazel-actions-${{runner.os}}-
- name: Configure bazel
run: |
echo "build --repository_cache=~/bazel-repository-cache" >> ~/.bazelrc
echo "build --disk_cache=~/bazel-action-cache" >> ~/.bazelrc
echo "build --verbose_failures" >> ~/.bazelrc
bazel info
- name: Run tests
run: ./build_test.sh ${{ matrix['test-type'] }}