Feature/explicit exports msvc #31
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: linux | |
| on: [push, pull_request] | |
| jobs: | |
| linux: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - compiler: llvm | |
| compiler-version: 16 | |
| cxx: 20 | |
| - compiler: llvm | |
| compiler-version: 17 | |
| cxx: 20 | |
| - compiler: llvm | |
| compiler-version: 18 | |
| cxx: 23 | |
| - compiler: gcc | |
| compiler-version: 13 | |
| cxx: 20 | |
| - compiler: gcc | |
| compiler-version: 14 | |
| cxx: 23 | |
| name: "${{ github.job }} ${{ matrix.compiler }}-${{ matrix.compiler-version }} C++${{ matrix.cxx }}" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Export GitHub Actions cache environment variables | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
| core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | |
| - name: Setup ccache | |
| uses: hendrikmuhs/ccache-action@v1 | |
| with: | |
| key: "${{ github.job }}-${{ matrix.compiler }}-${{ matrix.compiler-version }}" | |
| max-size: "2G" | |
| - name: Compile | |
| run: | | |
| if [[ "${{ matrix.compiler }}" == "llvm" ]]; then | |
| export CC=clang-${{ matrix.compiler-version }} | |
| export CXX=clang++-${{ matrix.compiler-version }} | |
| elif [[ "${{ matrix.compiler }}" == "gcc" ]]; then | |
| export CC=gcc-${{ matrix.compiler-version }} | |
| export CXX=g++-${{ matrix.compiler-version }} | |
| fi | |
| sudo ln -s $(which ccache) /usr/local/bin/$CC | |
| sudo ln -s $(which ccache) /usr/local/bin/$CXX | |
| $CXX --version | |
| cmake -B build -G Ninja -DCMAKE_CXX_STANDARD=${{ matrix.cxx }} -DORYX_CHRON_BUILD_TESTS=ON -DCMAKE_BUILD_TYPE=Release | |
| cmake --build build | |
| - name: Run tests | |
| run: | | |
| ./build/chron-cpp_tests | |
| linux-extra: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: "ASan" | |
| extra-flags: "-DORYX_CHRON_SANITIZE_ADDRESS=ON" | |
| - name: "TSan" | |
| extra-flags: "-DORYX_CHRON_SANITIZE_THREAD=ON" # Not doing much right now | |
| - name: "Optimized Build" | |
| extra-flags: "-DCMAKE_CXX_FLAGS=-O3" | |
| - name: "Shared Build" | |
| extra-flags: "-DORYX_CHRON_BUILD_SHARED_LIBS=ON" | |
| name: "${{ github.job }} ${{ matrix.name }}" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Export GitHub Actions cache environment variables | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
| core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | |
| - name: Setup ccache | |
| uses: hendrikmuhs/ccache-action@v1 | |
| with: | |
| key: "${{ github.job }}-${{ matrix.name }}" | |
| max-size: "2G" | |
| - name: Compile | |
| run: | | |
| cmake -B build -G Ninja -DORYX_CHRON_BUILD_TESTS=ON -DCMAKE_BUILD_TYPE=Release ${{ matrix.extra-flags || '' }} | |
| cmake --build build | |
| - name: Run tests | |
| run: | | |
| ./build/chron-cpp_tests | |
| linux-valgrind: | |
| name: "Valgrind leak checks" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y valgrind | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Export GitHub Actions cache environment variables | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
| core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | |
| - name: Setup ccache | |
| uses: hendrikmuhs/ccache-action@v1 | |
| with: | |
| key: "${{ github.job }}-valgrind-checks" | |
| max-size: "2G" | |
| - name: Compile | |
| run: | | |
| cmake -B build -G Ninja -DORYX_CHRON_BUILD_TESTS=ON -DCMAKE_BUILD_TYPE=Release | |
| cmake --build build | |
| - name: Run tests | |
| run: | | |
| valgrind --leak-check=full --error-exitcode=1 ./build/chron-cpp_tests |