From 1f558c7fd1f7a5d81391f425317cb7ec3e947534 Mon Sep 17 00:00:00 2001 From: Huy Do Date: Wed, 13 Sep 2023 11:39:26 -0700 Subject: [PATCH] Fix missing runner in Linux selective build and custom ops jobs (#313) Summary: I mistakenly replace this in https://github.com/pytorch/executorch/pull/277. The runner is not set here, and causes syntax error, for example https://github.com/pytorch/executorch/actions/runs/6167285165. The workflow still works because the default `linux.2xlarge` is used (same runner type) ### Testing The annotation error is gone now https://github.com/pytorch/executorch/actions/runs/6175961826 Pull Request resolved: https://github.com/pytorch/executorch/pull/313 Test Plan: https://github.com/pytorch/executorch/actions/runs/6175961826 Reviewed By: mergennachin Differential Revision: D49236002 Pulled By: huydhn fbshipit-source-id: bd5282f582d23427fd1d7622ed3b2ee2e6ad93cb --- .github/workflows/pull.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index 0c73373568..c141a6dc19 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -99,7 +99,7 @@ jobs: - build-tool: cmake fail-fast: false with: - runner: ${{ matrix.runner }} + runner: linux.2xlarge docker-image: executorch-ubuntu-22.04-clang12 submodules: 'true' ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} @@ -148,7 +148,7 @@ jobs: - build-tool: cmake fail-fast: false with: - runner: ${{ matrix.runner }} + runner: linux.2xlarge docker-image: executorch-ubuntu-22.04-clang12 submodules: 'true' ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}