CI #1842
This file contains hidden or 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
# 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 | |
permissions: | |
contents: read | |
# 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 * * *' | |
# Can be called from other workflow to run the tests | |
workflow_call: | |
inputs: | |
git_ref: | |
description: 'The git ref used to checkout the repository and run the tests.' | |
type: string | |
required: false | |
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobs | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
test-target: ['default', 'samples'] | |
os: [macos-latest, ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Setup Java | |
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0 | |
with: | |
java-version: '21' | |
distribution: 'zulu' | |
java-package: jdk | |
- name: Checkout the repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
with: | |
ref: ${{ inputs.git_ref || github.ref }} | |
- name: Cache Bazel repositories | |
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 | |
with: | |
path: ~/bazel-repository-cache | |
key: bazel-repositories-${{hashFiles('**/MODULE.bazel')}} | |
restore-keys: | | |
bazel-repositories- | |
- name: Cache Bazel results | |
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 | |
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 -c opt" >> ~/.bazelrc | |
echo "build --verbose_failures" >> ~/.bazelrc | |
bazel info | |
# Fake the host name to cause name lookups fail and fallback to localhost in WTL: | |
# rules_webtesting/go/httphelper/http_helper.go#FQDN() | |
# This prevents potential 'underscore' in resolved name which later used by | |
# WebDriver that inherits a JDK bug (https://bugs.openjdk.org/browse/JDK-8221675). | |
- name: Fake host name | |
if: matrix.os == 'macos-latest' | |
run: sudo scutil --set HostName unknown | |
- name: Run tests | |
if: matrix.test-target == 'default' | |
run: ./build_test.sh CI | |
- name: Run samples tests | |
if: matrix.test-target == 'samples' | |
run: | | |
if [[ -f "./build_test_samples.sh" ]]; then | |
./build_test_samples.sh CI | |
fi |