Remove forced inlining for ffc_digit_comp
#92
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: Simple Test | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| jobs: | |
| make-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: sudo apt-get update && sudo apt-get install -y clang gcc make python3 | |
| - name: make test | |
| run: make test | |
| - name: Supplemental tests | |
| run: | | |
| make fetch-supplemental-data | |
| make supplemental_tests | |
| - name: make example | |
| run: make example | |
| - name: Check dirty single-header | |
| run: git diff --exit-code ffc.h | |
| cmake-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: sudo apt-get update && sudo apt-get install -y clang gcc make python3 cmake | |
| - name: cmake configure | |
| run: cmake -B build | |
| - name: cmake build | |
| run: cmake --build build -j 2 | |
| - name: cmake test | |
| run: ctest --test-dir build -j 2 |