Skip to content

Merge pull request #52 from rrbutani/master #186

Merge pull request #52 from rrbutani/master

Merge pull request #52 from rrbutani/master #186

Workflow file for this run

name: Continuous integration
on:
push:
branches: master
pull_request:
branches: master
workflow_dispatch: # allows manual triggering
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
build-and-test:
name: Build & Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-2019]
bazel_mode: [workspace, module]
version: ["5.3.0", "6.0.0"]
exclude:
- version: 5.3.0
bazel_mode: module
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: bazelbuild/setup-bazelisk@v2
- name: Configure
env:
BUILDBUDDY_API_KEY: ${{ secrets.BUILDBUDDY_API_KEY }}
run: |
if [ -z "$BUILDBUDDY_API_KEY" ]; then
cache_setting='--noremote_upload_local_results'
else
cache_setting="--remote_header=x-buildbuddy-api-key=$BUILDBUDDY_API_KEY"
fi
cat >.bazelrc.local <<EOF
build $cache_setting
build --config=ci
EOF
cat >~/.netrc <<EOF
machine api.github.com
password ${{ secrets.GITHUB_TOKEN }}
EOF
cat >.bazelrc.disable-stardoc <<-EOF
build --build_tag_filters=-stardoc_generation
test --test_tag_filters=-stardoc_generation
EOF
if [[ ${{ runner.os }} == Windows ]]; then
# Stardoc complains about docstring quote indentation on Windows.
cat .bazelrc.disable-stardoc >>.bazelrc.local
fi
if [[ ${{ matrix.bazel_mode }} == module ]]; then
# Stardoc does not work with bzlmod.
cat .bazelrc.disable-stardoc >>.bazelrc.local
# Test with bzlmod enabled.
cat >>.bazelrc.local <<-EOF
build --experimental_enable_bzlmod
EOF
fi
- name: Run tests (bzlmod)
if: matrix.bazel_mode == 'module'
working-directory: ./tests
run: |
echo "USE_BAZEL_VERSION=${{ matrix.version }}" > .bazeliskrc
if [[ ${{ runner.os }} == Windows ]]; then
# On Windows `//...` expands to `/...`.
BAZEL_SH='C:\msys64\usr\bin\bash.exe' bazel test ///...
else
bazel test //...
fi
- name: Run tests (workspace)
if: matrix.bazel_mode == 'workspace'
run: |
echo "USE_BAZEL_VERSION=${{ matrix.version }}" > .bazeliskrc
echo "USE_BAZEL_VERSION=${{ matrix.version }}" > tests/.bazeliskrc
if [[ ${{ runner.os }} == Windows ]]; then
# Because of the docstring quote issue on Windows we skip the stardoc test on the main workspace.
# On Windows `//...` expands to `/...`.
cd tests && BAZEL_SH='C:\msys64\usr\bin\bash.exe' bazel test ///...
else
bazel test //...
cd tests && bazel test //...
fi