Skip to content

Commit 42b25bb

Browse files
authored
Use ubuntu-22.04-arm-sdk docker image for test-backend-arm.yml (#19186)
Most vgf tests were failing with "Failed to create VkInstance". Running with VK_LOADER_DEBUG=all revealed that the error was [Vulkan Loader] ERROR | DRIVER: vkCreateInstance: Found no drivers! The drivers are installed in the arm-sdk docker. Working run here: https://github.com/pytorch/executorch/actions/runs/25058662195
1 parent 69989b7 commit 42b25bb

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/_test_backend.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ on:
3636
required: false
3737
type: string
3838
default: linux.4xlarge.memory
39+
docker-image:
40+
description: 'Docker image for Linux jobs'
41+
required: false
42+
type: string
43+
default: ci-image:executorch-ubuntu-22.04-clang12
3944

4045
jobs:
4146
test-backend-linux:
@@ -50,7 +55,7 @@ jobs:
5055
with:
5156
ref: ${{ inputs.ref }}
5257
runner: ${{ inputs.runner-linux }}
53-
docker-image: ci-image:executorch-ubuntu-22.04-clang12
58+
docker-image: ${{ inputs.docker-image }}
5459
submodules: recursive
5560
timeout: ${{ inputs.timeout }}
5661
upload-artifact: test-report-${{ matrix.flow }}-${{ matrix.suite }}

.github/workflows/test-backend-arm.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ jobs:
2828
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
2929
timeout: 120
3030
run-linux: true
31+
docker-image: ci-image:executorch-ubuntu-22.04-arm-sdk

0 commit comments

Comments
 (0)