Fix #422: tensor sub simplifier round-7 parity — route dispatch(zero)… #535
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: Package Smoke Test | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ "**" ] | |
| pull_request: | |
| branches: [ "**" ] | |
| # Verifies the installable package (#84/#293): install NumSim_CAS, then | |
| # consume it from a fresh project via find_package(NumSim_CAS). | |
| jobs: | |
| smoke: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| parser: [ "OFF", "ON" ] | |
| env: | |
| CC: gcc-14 | |
| CXX: g++-14 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Installable-package smoke test (parser=${{ matrix.parser }}) | |
| run: ./cmake/package_smoke_test.sh ${{ matrix.parser }} |