refactor!: Move Transform2/Transform3 from Affine to Isometry #11609
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: Devcontainer CI | |
| on: | |
| push: | |
| # The release branches (keep in sync with release.yml) and the merge | |
| # queue's temp ref carry a tree that has already been built. | |
| branches-ignore: | |
| - 'releases' | |
| - 'release/**' | |
| - 'gh-readonly-queue/**' | |
| pull_request: | |
| branches: | |
| - main | |
| - 'release/**' | |
| - 'develop/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| devcontainer-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| submodules: recursive | |
| persist-credentials: false | |
| - name: Install devcontainer CLI | |
| run: | | |
| npm install -g @devcontainers/cli | |
| - name: Build devcontainer | |
| run: | | |
| devcontainer up --workspace-folder . | |
| - name: Run configure_acts | |
| run: | | |
| devcontainer exec --workspace-folder . bash -c "configure_acts" | |
| - name: Run build_acts with ActsCore target | |
| run: | | |
| devcontainer exec --workspace-folder . bash -c "build_acts --target ActsCore" |