Skip to content

Commit 7f69d56

Browse files
committed
Disable workflows until runner with GPU available
Signed-off-by: Martin Hickey <[email protected]>
1 parent ebde613 commit 7f69d56

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ permissions:
3232

3333
jobs:
3434
coverage:
35+
# Disable until runner with Nvidia GPU available
36+
if: false
3537
runs-on: ubuntu-latest
3638
name: "coverage: ${{ matrix.coverage.name }}"
3739
strategy:

.github/workflows/pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
name: Publish packages to test.pypi.org
5454
# environment: publish-test-pypi
5555
if: |
56-
github.repository_owner == 'hickeyma' && (
56+
github.repository_owner == 'foundation-model-stack' && (
5757
github.event.action == 'published' ||
5858
(github.event_name == 'push' && github.ref == 'refs/heads/main')
5959
)
@@ -87,7 +87,7 @@ jobs:
8787
name: Publish release to pypi.org
8888
# environment: publish-pypi
8989
if: |
90-
github.repository_owner == 'hickeyma' && github.event.action == 'published'
90+
github.repository_owner == 'foundation-model-stack' && github.event.action == 'published'
9191
permissions:
9292
# see https://docs.pypi.org/trusted-publishers/
9393
id-token: write

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ permissions:
3535

3636
jobs:
3737
test:
38-
# Start name with 'test:' for test-workflow-complete job_ids
38+
# Disable until runner with Nvidia GPU available
39+
if: false
3940
name: "test: ${{ matrix.python }} on ${{ matrix.platform }}"
4041
runs-on: "${{ matrix.platform }}"
4142
strategy:

0 commit comments

Comments
 (0)