Skip to content

Commit

Permalink
Fix FBGEMM CI on non-pytorch CI infra (pytorch#3181)
Browse files Browse the repository at this point in the history
Summary:
X-link: facebookresearch/FBGEMM#277

- Fix FBGEMM CI on non-pytorch CI infra

Pull Request resolved: pytorch#3181

Reviewed By: shintaro-iwasaki

Differential Revision: D63487219

Pulled By: q10

fbshipit-source-id: bd26c96ce9430e9309c102e13607e2cf6aa6b6bd
  • Loading branch information
q10 authored and facebook-github-bot committed Sep 26, 2024
1 parent 2cb9b22 commit b0e69ca
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/fbgemm_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ concurrency:

jobs:
build-linux:
runs-on: ${{ github.repository_owner == 'pytorch' && matrix.host-machine.instance || 'ubuntu-latest' }}
if: ${{ github.repository_owner == 'pytorch' }}
runs-on: ${{ matrix.host-machine.instance }}
container:
image: amazonlinux:2023
options: --user root
Expand Down Expand Up @@ -105,7 +106,8 @@ jobs:
build-bazel:
runs-on: ${{ github.repository_owner == 'pytorch' && matrix.host-machine.instance || 'ubuntu-latest' }}
if: ${{ github.repository_owner == 'pytorch' }}
runs-on: ${{ matrix.host-machine.instance }}
container:
image: amazonlinux:2023
options: --user root
Expand Down

0 comments on commit b0e69ca

Please sign in to comment.