Remove the Mutate wrapper for the old interface. #5628
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
# Copyright 2022 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 | |
# | |
# http://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. | |
name: CMake Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
schedule: | |
# Triggered nightly at 8:00 AM UTC to re-create the build cache (ccache). | |
- cron: '0 8 * * *' | |
workflow_dispatch: | |
jobs: | |
run_tests: | |
name: Run CMake tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
env: | |
CCACHE_BASEDIR: ${{ github.workspace }} | |
CCACHE_DIR: ${{ github.workspace }}/.ccache | |
strategy: | |
matrix: | |
mode: ['default', 'fuzzing', 'codelab'] | |
steps: | |
# TODO(lszekeres): Remove once the following is fixed: | |
# https://github.com/actions/runner-images/issues/9491 | |
- name: Reduce ASLR entropy as a temporary workaround | |
run: | | |
sudo sysctl -w vm.mmap_rnd_bits=28 | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update && sudo apt-get install -yq \ | |
ccache clang cmake ninja-build libprotobuf-dev protobuf-compiler | |
- name: Restore latest cache | |
uses: actions/cache/restore@v4 | |
with: | |
path: ${{ env.CCACHE_DIR }} | |
key: cmake-cache-${{ matrix.mode }} | |
restore-keys: cmake-cache-${{ matrix.mode }}- | |
- name: Check whether FuzzTest can be build using FetchContent | |
if: matrix.mode == 'codelab' | |
run: | | |
CC=clang CXX=clang++ cmake \ | |
-S codelab \ | |
-B build_codelab \ | |
-G Ninja \ | |
-D CMAKE_C_COMPILER_LAUNCHER=ccache \ | |
-D CMAKE_CXX_COMPILER_LAUNCHER=ccache \ | |
-D CMAKE_BUILD_TYPE=RelWithDebug \ | |
-D FUZZTEST_REPO_BRANCH="${{ github.head_ref || github.ref_name }}" \ | |
&& cmake --build build_codelab -j $(nproc) | |
- name: Run all tests in default mode | |
if: matrix.mode == 'default' | |
run: | | |
CC=clang CXX=clang++ cmake \ | |
-S . \ | |
-B build \ | |
-G Ninja \ | |
-D CMAKE_C_COMPILER_LAUNCHER=ccache \ | |
-D CMAKE_CXX_COMPILER_LAUNCHER=ccache \ | |
-D CMAKE_BUILD_TYPE=RelWithDebug \ | |
-D FUZZTEST_BUILD_TESTING=on \ | |
&& cmake --build build -j $(nproc) \ | |
&& ctest --test-dir build -j $(nproc) --output-on-failure | |
- name: Run end-to-end tests in fuzzing mode | |
if: matrix.mode == 'fuzzing' | |
run: | | |
CC=clang CXX=clang++ cmake \ | |
-S . \ | |
-B build \ | |
-G Ninja \ | |
-D CMAKE_C_COMPILER_LAUNCHER=ccache \ | |
-D CMAKE_CXX_COMPILER_LAUNCHER=ccache \ | |
-D CMAKE_BUILD_TYPE=RelWithDebug \ | |
-D FUZZTEST_FUZZING_MODE=on \ | |
-D FUZZTEST_BUILD_TESTING=on \ | |
&& cmake --build build -j $(nproc) \ | |
&& ctest --test-dir build -j $(nproc) --output-on-failure -R "functional_test" | |
- name: Save new cache based on main | |
if: github.ref == 'refs/heads/main' | |
uses: actions/cache/save@v4 | |
with: | |
path: ${{ env.CCACHE_DIR }} | |
key: cmake-cache-${{ matrix.mode }}-${{ github.run_id }} |