diff --git a/.ci/docker/build.sh b/.ci/docker/build.sh index 59d5daa8b8f..ecbe7af3246 100755 --- a/.ci/docker/build.sh +++ b/.ci/docker/build.sh @@ -37,10 +37,6 @@ case "${IMAGE_NAME}" in ARM_SDK=yes CLANG_VERSION=12 ;; - executorch-ubuntu-22.04-qnn-sdk) - QNN_SDK=yes - CLANG_VERSION=12 - ;; executorch-ubuntu-22.04-clang12-android) LINTRUNNER="" CLANG_VERSION=12 @@ -79,7 +75,6 @@ docker build \ --build-arg "LINTRUNNER=${LINTRUNNER:-}" \ --build-arg "BUILD_DOCS=${BUILD_DOCS}" \ --build-arg "ARM_SDK=${ARM_SDK:-}" \ - --build-arg "QNN_SDK=${QNN_SDK:-}" \ --build-arg "ANDROID_NDK_VERSION=${ANDROID_NDK_VERSION:-}" \ -f "${OS}"/Dockerfile \ "$@" \ diff --git a/.ci/docker/ubuntu/Dockerfile b/.ci/docker/ubuntu/Dockerfile index 2aa9f24b677..449cd14b6b4 100644 --- a/.ci/docker/ubuntu/Dockerfile +++ b/.ci/docker/ubuntu/Dockerfile @@ -82,10 +82,5 @@ COPY --chown=ci-user:ci-user ./arm /opt/arm # Set up ARM SDK if needed RUN if [ -n "${ARM_SDK}" ]; then git config --global user.email "ossci@example.com"; git config --global user.name "OSS CI"; bash /opt/arm/setup.sh --i-agree-to-the-contained-eula /opt/arm-sdk; chown -R ci-user:ci-user /opt/arm-sdk; fi -ARG QNN_SDK -COPY --chown=ci-user:ci-user ./qualcomm /opt/qualcomm -# Set up QNN SDK if needed -RUN if [ -n "${QNN_SDK}" ]; then git config --global user.email "ossci@example.com"; git config --global user.name "OSS CI"; fi - USER ci-user CMD ["bash"] diff --git a/.github/workflows/trunk.yml b/.github/workflows/trunk.yml index 86e44e647da..db969936d7a 100644 --- a/.github/workflows/trunk.yml +++ b/.github/workflows/trunk.yml @@ -283,7 +283,7 @@ jobs: fail-fast: false with: runner: linux.2xlarge - docker-image: executorch-ubuntu-22.04-qnn-sdk + docker-image: executorch-ubuntu-22.04-clang12-android submodules: 'true' ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} timeout: 900