|
| 1 | +# SPDX-FileCopyrightText: 2025 ETH Zurich and University of Bologna |
| 2 | +# |
| 3 | +# SPDX-License-Identifier: Apache-2.0 |
| 4 | + |
| 5 | +--- |
| 6 | +name: CI • GAP9 (Tiled) |
| 7 | + |
| 8 | +"on": |
| 9 | + push: |
| 10 | + branches: |
| 11 | + - "**" |
| 12 | + tags: |
| 13 | + - "v*.*.*" |
| 14 | + pull_request: |
| 15 | + workflow_dispatch: |
| 16 | + inputs: |
| 17 | + docker_image_deeploy: |
| 18 | + description: "Deeploy Image to use" |
| 19 | + required: false |
| 20 | + default: "ghcr.io/pulp-platform/deeploy-gap9:latest" |
| 21 | + |
| 22 | +concurrency: |
| 23 | + group: ${{ github.workflow }}-${{ github.ref }} |
| 24 | + cancel-in-progress: true |
| 25 | + |
| 26 | +jobs: |
| 27 | + select-env: |
| 28 | + uses: ./.github/workflows/_select-env.yml |
| 29 | + with: |
| 30 | + docker_image_deeploy: ${{ github.event.inputs.docker_image_deeploy || github.repository == 'pulp-platform/Deeploy' && 'ghcr.io/pulp-platform/deeploy-gap9:latest'}} |
| 31 | + |
| 32 | + gap9-kernels-tiled-singlebuffer-L2: |
| 33 | + needs: select-env |
| 34 | + uses: ./.github/workflows/_runner-gap9-tiled.yml |
| 35 | + with: |
| 36 | + runner: ${{ needs.select-env.outputs.runner }} |
| 37 | + docker-image: ${{ needs.select-env.outputs.image }} |
| 38 | + pytest-markers: "gap9_tiled and kernels and singlebuffer and l2" |
| 39 | + |
| 40 | + gap9-kernels-tiled-doublebuffer-L2: |
| 41 | + needs: select-env |
| 42 | + uses: ./.github/workflows/_runner-gap9-tiled.yml |
| 43 | + with: |
| 44 | + runner: ${{ needs.select-env.outputs.runner }} |
| 45 | + docker-image: ${{ needs.select-env.outputs.image }} |
| 46 | + pytest-markers: "gap9_tiled and kernels and doublebuffer and l2" |
| 47 | + |
| 48 | + gap9-models-tiled-singlebuffer-L2: |
| 49 | + needs: select-env |
| 50 | + uses: ./.github/workflows/_runner-gap9-tiled.yml |
| 51 | + with: |
| 52 | + runner: ${{ needs.select-env.outputs.runner }} |
| 53 | + docker-image: ${{ needs.select-env.outputs.image }} |
| 54 | + pytest-markers: "gap9_tiled and models and singlebuffer and l2" |
| 55 | + |
| 56 | + gap9-models-tiled-doublebuffer-L2: |
| 57 | + needs: select-env |
| 58 | + uses: ./.github/workflows/_runner-gap9-tiled.yml |
| 59 | + with: |
| 60 | + runner: ${{ needs.select-env.outputs.runner }} |
| 61 | + docker-image: ${{ needs.select-env.outputs.image }} |
| 62 | + pytest-markers: "gap9_tiled and models and doublebuffer and l2" |
0 commit comments