Skip to content

[SOT][NumPy] Fix TypeError: unhashable type that occurs when attempting to construct a NumPyAPIVariable #5096

[SOT][NumPy] Fix TypeError: unhashable type that occurs when attempting to construct a NumPyAPIVariable

[SOT][NumPy] Fix TypeError: unhashable type that occurs when attempting to construct a NumPyAPIVariable #5096

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize]
branches: [develop, release/**]
permissions: read-all
concurrency:
group: ${{ github.event.pull_request.number }}
cancel-in-progress: true
env:
PR_ID: ${{ github.event.pull_request.number }}
COMMIT_ID: ${{ github.event.pull_request.head.sha }}
jobs:
clone:
name: Clone-linux
uses: ./.github/workflows/_Clone-linux.yml
build-docker:
name: build docker images
needs: clone
uses: ./.github/workflows/docker.yml
sot:
name: PR-CI-SOT
uses: ./.github/workflows/_SOT.yml
needs: build-docker
with:
docker_cpu_image: ${{ needs.build-docker.outputs.docker_cpu_image }}
xpu:
name: Linux-XPU
uses: ./.github/workflows/_Linux-XPU.yml
needs: clone
inference:
name: PR-CI-Inference
uses: ./.github/workflows/_Inference.yml
needs: build-docker
with:
docker_inference_image: ${{ needs.build-docker.outputs.docker_inference_image }}
coverage:
name: Coverage
uses: ./.github/workflows/_Coverage.yml
needs: clone
cpu:
name: Linux-CPU
uses: ./.github/workflows/_Linux-CPU.yml
needs: clone
npu:
name: Linux-NPU
uses: ./.github/workflows/_Linux-NPU.yml
needs: cpu
distribute:
name: Distribute-stable
uses: ./.github/workflows/_Distribute-stable.yml
needs: clone