Update procedure_pointer
to allow foreign-functions to define mutab…
#2529
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: Build and Test | |
on: | |
push: | |
schedule: | |
- cron: 0 0 * * * | |
jobs: | |
Ubuntu: | |
runs-on: ${{ matrix.system }} | |
timeout-minutes: 360 | |
env: | |
CXX: ${{ matrix.compiler }} | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: [ g++, clang++ ] | |
configuration: [ Debug, Release ] | |
system: [ ubuntu-20.04, ubuntu-22.04 ] | |
steps: | |
- uses: actions/checkout@v3 | |
- run: ./script/setup.sh --all | |
- run: cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} | |
- run: cmake --build build --target develop | |
- run: cmake -B example/build -S example -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} | |
- run: cmake --build example/build --target develop |