Skip to content

Commit 1f558c7

Browse files
huydhnfacebook-github-bot
authored andcommitted
Fix missing runner in Linux selective build and custom ops jobs (#313)
Summary: I mistakenly replace this in #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: #313 Test Plan: https://github.com/pytorch/executorch/actions/runs/6175961826 Reviewed By: mergennachin Differential Revision: D49236002 Pulled By: huydhn fbshipit-source-id: bd5282f582d23427fd1d7622ed3b2ee2e6ad93cb
1 parent 63bb3b5 commit 1f558c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pull.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
- build-tool: cmake
100100
fail-fast: false
101101
with:
102-
runner: ${{ matrix.runner }}
102+
runner: linux.2xlarge
103103
docker-image: executorch-ubuntu-22.04-clang12
104104
submodules: 'true'
105105
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -148,7 +148,7 @@ jobs:
148148
- build-tool: cmake
149149
fail-fast: false
150150
with:
151-
runner: ${{ matrix.runner }}
151+
runner: linux.2xlarge
152152
docker-image: executorch-ubuntu-22.04-clang12
153153
submodules: 'true'
154154
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

0 commit comments

Comments
 (0)