doc/mksyntaxgo: resync with the Go Project #388
Workflow file for this run
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
| name: CI (CMake) | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main, rsc-testing] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-linux: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| build_shared_libs: [OFF, ON] | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - name: Install Abseil, GoogleTest and Benchmark | |
| run: | | |
| vcpkg update | |
| vcpkg install abseil gtest benchmark | |
| shell: bash | |
| - run: | | |
| .github/cmake.sh -D BUILD_SHARED_LIBS=${{ matrix.build_shared_libs }} \ | |
| -D CMAKE_TOOLCHAIN_FILE=/usr/local/share/vcpkg/scripts/buildsystems/vcpkg.cmake | |
| shell: bash | |
| build-macos: | |
| runs-on: macos-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| build_shared_libs: [OFF, ON] | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - name: Install Abseil, GoogleTest and Benchmark | |
| run: | | |
| brew update | |
| brew install abseil googletest google-benchmark | |
| shell: bash | |
| - run: .github/cmake.sh -D BUILD_SHARED_LIBS=${{ matrix.build_shared_libs }} | |
| shell: bash | |
| build-windows: | |
| runs-on: windows-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| build_shared_libs: [OFF, ON] | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - name: Install Abseil, GoogleTest and Benchmark | |
| run: | | |
| vcpkg update | |
| vcpkg install abseil gtest benchmark | |
| shell: bash | |
| - run: | | |
| .github/cmake.sh -D BUILD_SHARED_LIBS=${{ matrix.build_shared_libs }} \ | |
| -D CMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake | |
| shell: bash |