This commit is contained in:
Nicolas Patry 2024-10-01 15:57:20 +02:00
parent 290bd2ec4c
commit f2b1429b9b
No known key found for this signature in database
GPG Key ID: E939E8CC91A1C674

View File

@ -41,7 +41,6 @@ jobs:
- name: Construct harware variables - name: Construct harware variables
shell: bash shell: bash
run: | run: |
export extra_pytest = ""
case ${{ inputs.hardware }} in case ${{ inputs.hardware }} in
cuda) cuda)
export dockerfile="Dockerfile" export dockerfile="Dockerfile"
@ -49,6 +48,7 @@ jobs:
export docker_devices="" export docker_devices=""
export runs_on="aws-g6-12xl-plus-priv-cache" export runs_on="aws-g6-12xl-plus-priv-cache"
export platform="" export platform=""
export extra_pytest = " "
;; ;;
rocm) rocm)
export dockerfile="Dockerfile_amd" export dockerfile="Dockerfile_amd"
@ -64,6 +64,7 @@ jobs:
export docker_devices="" export docker_devices=""
export runs_on="ubuntu-latest" export runs_on="ubuntu-latest"
export platform="xpu" export platform="xpu"
export extra_pytest = " "
;; ;;
intel-cpu) intel-cpu)
export dockerfile="Dockerfile_intel" export dockerfile="Dockerfile_intel"
@ -71,6 +72,7 @@ jobs:
export docker_devices="" export docker_devices=""
export runs_on="ubuntu-latest" export runs_on="ubuntu-latest"
export platform="cpu" export platform="cpu"
export extra_pytest = " "
;; ;;
esac esac
echo $dockerfile echo $dockerfile