feat(cad): adacpp builds ExtrudedAreaSolid natively (beams + plates) #1862
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: ci-branch-tests | |
| on: push | |
| concurrency: | |
| group: ada-quick-tests-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test-core: | |
| name: Test ada-py-core | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
| - uses: prefix-dev/setup-pixi@v0.9.5 # https://github.com/prefix-dev/setup-pixi | |
| with: | |
| pixi-version: v0.68.0 | |
| environments: tests | |
| cache: true | |
| - name: Runs Tests | |
| run: pixi run test-core | |
| test-full: | |
| name: Test ada-py-full | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
| - uses: prefix-dev/setup-pixi@v0.9.5 | |
| with: | |
| pixi-version: v0.68.0 | |
| environments: >- | |
| tests | |
| frontend | |
| cache: true | |
| - name: Run Build latest web | |
| run: pixi run wbuild | |
| - name: Run Tests | |
| run: pixi run test-full | |
| test-fem: | |
| name: Test ada-py-fem | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
| - uses: prefix-dev/setup-pixi@v0.9.5 | |
| with: | |
| pixi-version: v0.68.0 | |
| environments: >- | |
| fem | |
| cache: true | |
| - name: Run Tests | |
| run: pixi run test-fem |