upgrade test images to bazel 6.4 #10
Workflow file for this run
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: C++ Tests | ||
on: | ||
workflow_call: | ||
inputs: | ||
safe-checkout: | ||
required: true | ||
description: "The SHA key for the commit we want to run over" | ||
type: string | ||
permissions: | ||
contents: read | ||
jobs: | ||
linux: | ||
strategy: | ||
fail-fast: false # Don't cancel all jobs if one fails. | ||
matrix: | ||
bazel-version: ['6.4.0'] | ||
config: | ||
- { name: Optimized, flags: --config=opt } | ||
- { name: Debug, flags: --config=dbg } | ||
- { name: ASAN, flags: --config=asan, runner: ubuntu-22-4core } | ||
- { name: MSAN, flags: --config=docker-msan, runner: ubuntu-22-4core } | ||
- { name: TSAN, flags: --config=tsan, runner: ubuntu-22-4core } | ||
- { name: UBSAN, flags: --config=ubsan } | ||
- { name: No-RTTI, flags: --cxxopt=-fno-rtti } | ||
include: | ||
# Set defaults | ||
- image: us-docker.pkg.dev/protobuf-build/containers/test/linux/sanitize:6.4.0-27cf7b86212020d7e552bc13b1e084abb971da75 | ||
- targets: //pkg/... //src/... @com_google_protobuf_examples//... //third_party/utf8_range/... | ||
# Override cases with custom images | ||
- config: { name: "Bazel7" } | ||
image: "us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:6.4.0-cf84e92285ca133b9c8104ad7b14d70e953cbb8e" | ||
targets: "//src/... //third_party/utf8_range/..." | ||
- config: { name: "TCMalloc" } | ||
image: "us-docker.pkg.dev/protobuf-build/containers/test/linux/tcmalloc:6.4.0-27cf7b86212020d7e552bc13b1e084abb971da75 | ||
targets: "//src/... //third_party/utf8_range/..." | ||
- config: { name: "aarch64" } | ||
targets: "//src/... //src/google/protobuf/compiler:protoc_aarch64_test //third_party/utf8_range/..." | ||
image: "us-docker.pkg.dev/protobuf-build/containers/test/linux/emulation:6.4.0-aarch64-08714ed7a713068c8418003a2d95f423d4b1eac9" | ||
name: Linux ${{ matrix.config.name }} | ||
runs-on: ${{ matrix.config.runner || 'ubuntu-latest' }} | ||
steps: | ||
- name: Checkout pending changes | ||
uses: protocolbuffers/protobuf-ci/checkout@v3 | ||
with: | ||
ref: ${{ inputs.safe-checkout }} | ||
- name: Run tests | ||
uses: protocolbuffers/protobuf-ci/bazel-docker@v3 | ||
with: | ||
image: ${{ matrix.image }} | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
bazel-cache: cpp_linux/${{ matrix.config.name }} | ||
bazel: test ${{ matrix.targets }} ${{ matrix.config.flags }} | ||
linux-gcc: | ||
strategy: | ||
fail-fast: false # Don't cancel all jobs if one fails. | ||
matrix: | ||
bazel-version: ['6.4.0'] | ||
version: ['9.5', '13.1'] | ||
name: Linux GCC ${{ matrix.version }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout pending changes | ||
uses: protocolbuffers/protobuf-ci/checkout@v3 | ||
with: | ||
ref: ${{ inputs.safe-checkout }} | ||
- name: Run tests | ||
uses: protocolbuffers/protobuf-ci/bazel-docker@v3 | ||
with: | ||
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/gcc:${{ matrix.bazel-version }}-${{ matrix.version }}-27cf7b86212020d7e552bc13b1e084abb971da75 | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
bazel-cache: cpp_linux/gcc-${{ matrix.version }} | ||
bazel: test //pkg/... //src/... @com_google_protobuf_examples//... //third_party/utf8_range/... | ||
linux-release: | ||
strategy: | ||
fail-fast: false # Don't cancel all jobs if one fails. | ||
matrix: | ||
arch: [x86_64, aarch64] | ||
bazel-version: ['6.4.0'] | ||
name: Linux Release ${{ matrix.arch}} | ||
runs-on: ubuntu-20-4core | ||
steps: | ||
- name: Checkout pending changes | ||
uses: protocolbuffers/protobuf-ci/checkout@v3 | ||
with: | ||
ref: ${{ inputs.safe-checkout }} | ||
submodules: recursive | ||
- name: Cross compile protoc for ${{ matrix.arch }} | ||
id: cross-compile | ||
uses: protocolbuffers/protobuf-ci/cross-compile-protoc@v3 | ||
with: | ||
image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:${{ matrix.bazel-version }}-cf84e92285ca133b9c8104ad7b14d70e953cbb8e | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
architecture: linux-${{ matrix.arch }} | ||
- name: Setup sccache | ||
uses: protocolbuffers/protobuf-ci/sccache@v3 | ||
with: | ||
cache-prefix: linux-release-${{ matrix.arch }} | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
- name: Run tests | ||
uses: protocolbuffers/protobuf-ci/docker@b7-test | ||
with: | ||
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/emulation:${{ matrix.bazel-version }}-${{ matrix.arch }}-08714ed7a713068c8418003a2d95f423d4b1eac9 | ||
staleness-image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:${{ matrix.bazel-version }}-cf84e92285ca133b9c8104ad7b14d70e953cbb8e | ||
bazel-version: ${{ matrix.bazel-version }} | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
entrypoint: bash | ||
command: > | ||
-c "set -ex; | ||
sccache -z; | ||
cmake . -DWITH_PROTOC=/workspace/${{ steps.cross-compile.outputs.protoc }} | ||
-Dprotobuf_BUILD_LIBUPB=OFF -Dprotobuf_BUILD_CONFORMANCE=ON -DCMAKE_CXX_STANDARD=14 | ||
-Dprotobuf_WITH_ZLIB=OFF ${{ env.SCCACHE_CMAKE_FLAGS }}; | ||
cmake --build . --parallel 20; | ||
ctest --parallel 20; | ||
sccache -s" | ||
linux-cmake: | ||
strategy: | ||
fail-fast: false # Don't cancel all jobs if one fails. | ||
matrix: | ||
bazel-version: ['6.4.0'] | ||
include: | ||
- flags: -Dprotobuf_BUILD_EXAMPLES=ON -DCMAKE_CXX_STANDARD=14 | ||
- name: Ninja | ||
flags: -G Ninja -DCMAKE_CXX_STANDARD=14 | ||
- name: Shared | ||
flags: -Dprotobuf_BUILD_SHARED_LIBS=ON -Dprotobuf_BUILD_EXAMPLES=ON -DCMAKE_CXX_STANDARD=14 | ||
- name: C++17 | ||
flags: -DCMAKE_CXX_STANDARD=17 | ||
# TODO Re-enable this. | ||
#- name: C++20 | ||
# flags: -DCMAKE_CXX_STANDARD=20 | ||
name: Linux CMake ${{ matrix.name}} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout pending changes | ||
uses: protocolbuffers/protobuf-ci/checkout@v3 | ||
with: | ||
ref: ${{ inputs.safe-checkout }} | ||
- name: Setup sccache | ||
uses: protocolbuffers/protobuf-ci/sccache@v3 | ||
with: | ||
cache-prefix: linux-cmake | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
- name: Run tests | ||
uses: protocolbuffers/protobuf-ci/docker@b7-test | ||
with: | ||
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/cmake:3.13.3-384d5abe83a791c6b1ce04f5d7bc0b1f84a30d38 | ||
staleness-image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:${{ matrix.bazel-version }}-cf84e92285ca133b9c8104ad7b14d70e953cbb8e | ||
bazel-version: ${{ matrix.bazel-version }} | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
command: >- | ||
/test.sh ${{ matrix.flags}} ${{ env.SCCACHE_CMAKE_FLAGS }} | ||
-Dprotobuf_BUILD_TESTS=ON -Dprotobuf_USE_EXTERNAL_GTEST=ON | ||
-Dprotobuf_ABSL_PROVIDER=package | ||
linux-cmake-install: | ||
strategy: | ||
fail-fast: false # Don't cancel all jobs if one fails. | ||
matrix: | ||
bazel-version: ['6.4.0'] | ||
name: Linux CMake Install | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout pending changes | ||
uses: protocolbuffers/protobuf-ci/checkout@v3 | ||
with: | ||
ref: ${{ inputs.safe-checkout }} | ||
submodules: recursive | ||
- name: Setup sccache | ||
uses: protocolbuffers/protobuf-ci/sccache@v3 | ||
with: | ||
cache-prefix: linux-cmake-install | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
- name: Run tests | ||
uses: protocolbuffers/protobuf-ci/docker@b7-test | ||
with: | ||
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/cmake:3.13.3-384d5abe83a791c6b1ce04f5d7bc0b1f84a30d38 | ||
staleness-image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:${{ matrix.bazel-version }}-cf84e92285ca133b9c8104ad7b14d70e953cbb8e | ||
bazel-version: ${{ matrix.bazel-version }} | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
command: >- | ||
/install.sh -DCMAKE_CXX_STANDARD=14 ${{ env.SCCACHE_CMAKE_FLAGS }} | ||
-Dprotobuf_USE_EXTERNAL_GTEST=ON -Dprotobuf_ABSL_PROVIDER=package | ||
-Dprotobuf_BUILD_SHARED_LIBS=ON \&\& | ||
/test.sh | ||
${{ env.SCCACHE_CMAKE_FLAGS }} | ||
-Dprotobuf_REMOVE_INSTALLED_HEADERS=ON | ||
-Dprotobuf_BUILD_PROTOBUF_BINARIES=OFF | ||
-Dprotobuf_BUILD_CONFORMANCE=ON | ||
-DCMAKE_CXX_STANDARD=14 | ||
-Dprotobuf_USE_EXTERNAL_GTEST=ON -Dprotobuf_ABSL_PROVIDER=package | ||
linux-cmake-examples: | ||
strategy: | ||
fail-fast: false # Don't cancel all jobs if one fails. | ||
matrix: | ||
bazel-version: ['6.4.0'] | ||
name: Linux CMake Examples | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout pending changes | ||
uses: protocolbuffers/protobuf-ci/checkout@v3 | ||
with: | ||
ref: ${{ inputs.safe-checkout }} | ||
- name: Setup sccache | ||
uses: protocolbuffers/protobuf-ci/sccache@v3 | ||
with: | ||
cache-prefix: linux-cmake-examples | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
- name: Run tests | ||
uses: protocolbuffers/protobuf-ci/docker@b7-test | ||
with: | ||
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/cmake:3.13.3-384d5abe83a791c6b1ce04f5d7bc0b1f84a30d38 | ||
staleness-image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:${{ matrix.bazel-version }}-cf84e92285ca133b9c8104ad7b14d70e953cbb8e | ||
bazel-version: ${{ matrix.bazel-version }} | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
command: >- | ||
/install.sh -DCMAKE_CXX_STANDARD=14 ${{ env.SCCACHE_CMAKE_FLAGS }} | ||
-Dprotobuf_USE_EXTERNAL_GTEST=ON -Dprotobuf_ABSL_PROVIDER=package | ||
-Dprotobuf_BUILD_EXAMPLES=OFF \&\& | ||
mkdir examples/build \&\& | ||
cd examples/build \&\& | ||
cmake .. -DCMAKE_CXX_STANDARD=14 \&\& | ||
cmake --build . | ||
linux-cmake-gcc: | ||
strategy: | ||
fail-fast: false # Don't cancel all jobs if one fails. | ||
matrix: | ||
bazel-version: ['6.4.0'] | ||
gcc-version: ['12.2'] | ||
include: | ||
- name: C++14 | ||
flags: -DCMAKE_CXX_STANDARD=14 | ||
- name: C++17 | ||
flags: -DCMAKE_CXX_STANDARD=17 | ||
- name: C++20 | ||
flags: -DCMAKE_CXX_STANDARD=20 | ||
name: Linux CMake GCC ${{ matrix.name }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout pending changes | ||
uses: protocolbuffers/protobuf-ci/checkout@v3 | ||
with: | ||
ref: ${{ inputs.safe-checkout }} | ||
submodules: recursive | ||
- name: Setup sccache | ||
uses: protocolbuffers/protobuf-ci/sccache@v3 | ||
with: | ||
cache-prefix: linux-cmake-gcc | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
- name: Run tests | ||
uses: protocolbuffers/protobuf-ci/docker@b7-test | ||
with: | ||
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/gcc:${{ matrix.bazel-version }}-${{ matrix.gcc-version }}-27cf7b86212020d7e552bc13b1e084abb971da75 | ||
staleness-image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:${{ matrix.bazel-version }}-cf84e92285ca133b9c8104ad7b14d70e953cbb8e | ||
bazel-version: ${{ matrix.bazel-version }} | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
entrypoint: bash | ||
command: >- | ||
-c 'set -ex; | ||
cd /workspace; | ||
sccache -z; | ||
cmake . ${{ matrix.flags }} ${{ env.SCCACHE_CMAKE_FLAGS }}; | ||
cmake --build . --parallel 20; | ||
ctest --verbose --parallel 20; | ||
sccache -s' | ||
linux-cmake-submodules: | ||
strategy: | ||
fail-fast: false # Don't cancel all jobs if one fails. | ||
matrix: | ||
bazel-version: ['6.4.0'] | ||
name: Linux CMake Submodules | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout pending changes | ||
uses: protocolbuffers/protobuf-ci/checkout@v3 | ||
with: | ||
ref: ${{ inputs.safe-checkout }} | ||
submodules: recursive | ||
- name: Setup sccache | ||
uses: protocolbuffers/protobuf-ci/sccache@v3 | ||
with: | ||
cache-prefix: linux-cmake-submodules | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
- name: Run tests | ||
uses: protocolbuffers/protobuf-ci/docker@b7-test | ||
with: | ||
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/cmake:3.13.3-384d5abe83a791c6b1ce04f5d7bc0b1f84a30d38 | ||
staleness-image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:${{ matrix.bazel-version }}-cf84e92285ca133b9c8104ad7b14d70e953cbb8e | ||
bazel-version: ${{ matrix.bazel-version }} | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
command: >- | ||
/test.sh ${{ env.SCCACHE_CMAKE_FLAGS }} | ||
-Dprotobuf_BUILD_CONFORMANCE=ON -Dprotobuf_BUILD_EXAMPLES=ON -DCMAKE_CXX_STANDARD=14 | ||
linux-cmake-32-bit: | ||
strategy: | ||
fail-fast: false # Don't cancel all jobs if one fails. | ||
matrix: | ||
bazel-version: ['6.4.0'] | ||
name: Linux CMake 32-bit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout pending changes | ||
uses: protocolbuffers/protobuf-ci/checkout@v3 | ||
with: | ||
ref: ${{ inputs.safe-checkout }} | ||
submodules: recursive | ||
- name: Setup sccache | ||
uses: protocolbuffers/protobuf-ci/sccache@v3 | ||
with: | ||
cache-prefix: linux-cmake-32-bit | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
- name: Run tests | ||
uses: protocolbuffers/protobuf-ci/docker@b7-test | ||
with: | ||
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/32bit@sha256:429f924aec315704b4233adcbe4b29006116f27769db98acd176b9eb69c31299 | ||
staleness-image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:${{ matrix.bazel-version }}-cf84e92285ca133b9c8104ad7b14d70e953cbb8e | ||
bazel-version: ${{ matrix.bazel-version }} | ||
platform: linux/386 | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
command: >- | ||
/bin/bash -cex ' | ||
cd /workspace; | ||
sccache -z; | ||
cmake . -DCMAKE_CXX_STANDARD=14 ${{ env.SCCACHE_CMAKE_FLAGS }}; | ||
cmake --build . --parallel 20; | ||
ctest --verbose --parallel 20; | ||
sccache -s' | ||
non-linux: | ||
strategy: | ||
fail-fast: false # Don't cancel all jobs if one fails. | ||
matrix: | ||
include: | ||
- name: MacOS Bazel | ||
os: macos-12 | ||
cache_key: macos-12-bazel6 | ||
bazel: test //src/... //third_party/utf8_range/... | ||
bazel_version: '6.4.0' | ||
- name: MacOS Bazel | ||
os: macos-12 | ||
cache_key: macos-12-bazel7 | ||
bazel: test //src/... //third_party/utf8_range/... | ||
bazel_version: '7.1.2' | ||
- name: MacOS Apple Silicon (build only) Bazel | ||
os: macos-12 | ||
cache_key: macos-12-arm-bazel6 | ||
# Current github runners are all Intel based, so just build/compile | ||
# for Apple Silicon to detect issues there. | ||
bazel: build --cpu=darwin_arm64 //src/... //third_party/utf8_range/... | ||
bazel_version: '6.4.0' | ||
- name: Windows Bazel | ||
os: windows-2022 | ||
cache_key: windows-2022-bazel6 | ||
bazel: test //src/... @com_google_protobuf_examples//... --test_tag_filters=-conformance --build_tag_filters=-conformance | ||
bazel_version: '6.4.0' | ||
- name: Windows Bazel | ||
os: windows-2022 | ||
cache_key: windows-2022-bazel7 | ||
bazel: test //src/... @com_google_protobuf_examples//... --test_tag_filters=-conformance --build_tag_filters=-conformance | ||
bazel_version: '7.1.2' | ||
name: ${{ matrix.name }} ${{ matrix.bazel_version }} | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout pending changes | ||
uses: protocolbuffers/protobuf-ci/checkout@v3 | ||
with: | ||
ref: ${{ inputs.safe-checkout }} | ||
- name: Run tests | ||
uses: protocolbuffers/protobuf-ci/bazel@b7-test | ||
with: | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
bazel: ${{ matrix.bazel }} | ||
bazel-cache: cpp_${{ matrix.cache_key }} | ||
version: ${{ matrix.bazel_version }} | ||
non-linux-cmake: | ||
strategy: | ||
fail-fast: false # Don't cancel all jobs if one fails. | ||
matrix: | ||
bazel-version: ['6.4.0'] | ||
include: | ||
# TODO: investigate and fix | ||
# - name: MacOS CMake | ||
# os: macos-12 | ||
# flags: -DCMAKE_CXX_STANDARD=14 | ||
# cache-prefix: macos-cmake | ||
- name: Windows CMake | ||
os: windows-2022 | ||
flags: >- | ||
-G Ninja -Dprotobuf_WITH_ZLIB=OFF -Dprotobuf_BUILD_CONFORMANCE=OFF | ||
-Dprotobuf_BUILD_SHARED_LIBS=OFF | ||
-Dprotobuf_BUILD_EXAMPLES=ON | ||
vsversion: '2022' | ||
cache-prefix: windows-2022-cmake | ||
- name: Windows CMake 2019 | ||
os: windows-2019 | ||
flags: >- | ||
-G Ninja -Dprotobuf_WITH_ZLIB=OFF -Dprotobuf_BUILD_CONFORMANCE=OFF | ||
-Dprotobuf_BUILD_SHARED_LIBS=OFF | ||
-Dprotobuf_BUILD_EXAMPLES=ON | ||
vsversion: '2019' | ||
cache-prefix: windows-2019-cmake | ||
# windows-2019 has python3.7 installed, which is incompatible with the latest gcloud | ||
python-version: '3.9' | ||
- name: Windows CMake 32-bit | ||
os: windows-2022 | ||
flags: >- | ||
-G Ninja -Dprotobuf_WITH_ZLIB=OFF -Dprotobuf_BUILD_CONFORMANCE=OFF | ||
vsversion: '2022' | ||
windows-arch: 'win32' | ||
cache-prefix: windows-2022-win32-cmake | ||
- name: Windows CMake Shared | ||
os: windows-2022 | ||
flags: >- | ||
-G Ninja -Dprotobuf_WITH_ZLIB=OFF -Dprotobuf_BUILD_CONFORMANCE=OFF | ||
-Dprotobuf_BUILD_SHARED_LIBS=ON | ||
vsversion: '2022' | ||
cache-prefix: windows-2022-cmake | ||
- name: Windows CMake Install | ||
os: windows-2022 | ||
install-flags: -G Ninja -Dprotobuf_WITH_ZLIB=OFF -Dprotobuf_BUILD_CONFORMANCE=OFF -Dprotobuf_BUILD_TESTS=OFF | ||
flags: >- | ||
-G Ninja -Dprotobuf_WITH_ZLIB=OFF -Dprotobuf_BUILD_CONFORMANCE=OFF | ||
-Dprotobuf_REMOVE_INSTALLED_HEADERS=ON | ||
-Dprotobuf_BUILD_PROTOBUF_BINARIES=OFF | ||
vsversion: '2022' | ||
cache-prefix: windows-2022-cmake | ||
name: ${{ matrix.name }} | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout pending changes | ||
uses: protocolbuffers/protobuf-ci/checkout@v3 | ||
with: | ||
ref: ${{ inputs.safe-checkout }} | ||
submodules: recursive | ||
- name: Setup MSVC | ||
if: ${{ runner.os == 'Windows' }} | ||
uses: ilammy/msvc-dev-cmd@cec98b9d092141f74527d0afa6feb2af698cfe89 # v1.12.1 | ||
with: | ||
arch: ${{ matrix.windows-arch || 'x64' }} | ||
vsversion: ${{ matrix.vsversion }} | ||
# Workaround for Abseil incompatibility with CMake 3.30 (b/352354235). | ||
- name: Downgrade CMake | ||
if: ${{ runner.os == 'Windows' }} | ||
run: choco install cmake --version 3.29.6 --force | ||
shell: bash | ||
# Workaround for incompatibility between gcloud and windows-2019 runners. | ||
- name: Install Python | ||
if: ${{ matrix.python-version }} | ||
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Use custom python for gcloud | ||
if: ${{ matrix.python-version }} | ||
run: echo "CLOUDSDK_PYTHON=${Python3_ROOT_DIR}\\python3" >> $GITHUB_ENV | ||
shell: bash | ||
- name: Setup sccache | ||
uses: protocolbuffers/protobuf-ci/sccache@v3 | ||
with: | ||
cache-prefix: ${{ matrix.cache-prefix }} | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
# Install phase. | ||
- name: Configure CMake for install | ||
if: matrix.install-flags | ||
uses: protocolbuffers/protobuf-ci/bash@b7-test | ||
with: | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
bazel-version: ${{ matrix.bazel-version || '6.4.0' }} | ||
command: cmake . ${{ matrix.install-flags }} ${{ env.SCCACHE_CMAKE_FLAGS }} -Dprotobuf_ALLOW_CCACHE=ON | ||
- name: Build for install | ||
if: matrix.install-flags | ||
shell: bash | ||
run: VERBOSE=1 cmake --build . --parallel 20 | ||
- name: Install | ||
if: matrix.install-flags | ||
shell: bash | ||
run: cmake --build . --target install | ||
- name: Report and clear sccache stats | ||
if: matrix.install-flags | ||
shell: bash | ||
run: sccache -s && sccache -z | ||
- name: Clear CMake cache | ||
if: matrix.install-flags | ||
shell: bash | ||
run: cmake --build . --target clean && rm CMakeCache.txt | ||
- name: Configure CMake | ||
uses: protocolbuffers/protobuf-ci/bash@b7-test | ||
with: | ||
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }} | ||
bazel-version: ${{ matrix.bazel-version }} | ||
command: cmake . ${{ matrix.flags }} ${{ env.SCCACHE_CMAKE_FLAGS }} -Dprotobuf_ALLOW_CCACHE=ON | ||
- name: Build | ||
shell: bash | ||
run: VERBOSE=1 cmake --build . --parallel 20 | ||
- name: Test | ||
shell: bash | ||
run: ctest --verbose --parallel 20 -C Debug | ||
- name: Report sccache stats | ||
shell: bash | ||
run: sccache -s |