diff --git a/.github/workflows/_test_backend.yml b/.github/workflows/_test_backend.yml index dc87cc7304b..bfa874a440d 100644 --- a/.github/workflows/_test_backend.yml +++ b/.github/workflows/_test_backend.yml @@ -36,6 +36,11 @@ on: required: false type: string default: linux.4xlarge.memory + docker-image: + description: 'Docker image for Linux jobs' + required: false + type: string + default: ci-image:executorch-ubuntu-22.04-clang12 jobs: test-backend-linux: @@ -50,7 +55,7 @@ jobs: with: ref: ${{ inputs.ref }} runner: ${{ inputs.runner-linux }} - docker-image: ci-image:executorch-ubuntu-22.04-clang12 + docker-image: ${{ inputs.docker-image }} submodules: recursive timeout: ${{ inputs.timeout }} upload-artifact: test-report-${{ matrix.flow }}-${{ matrix.suite }} diff --git a/.github/workflows/test-backend-arm.yml b/.github/workflows/test-backend-arm.yml index f669761b514..1918e8e72f8 100644 --- a/.github/workflows/test-backend-arm.yml +++ b/.github/workflows/test-backend-arm.yml @@ -28,3 +28,4 @@ jobs: ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} timeout: 120 run-linux: true + docker-image: ci-image:executorch-ubuntu-22.04-arm-sdk