Unify library (scheme r4rs)
and (scheme r4rs essential)
#2495
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 |