Skip to content

Commit

Permalink
revert back to provided ubuntu runner
Browse files Browse the repository at this point in the history
  • Loading branch information
dsikka committed Mar 20, 2024
1 parent 40eee1f commit e44fa64
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ on:
schedule:
- cron: '0 2 * * *'

# TODO: update names of repos that containers are pushed to, removing 'test'
# TODO: docker containers created through a release cut vs PR to the release branch
# will be pushed to different locations (i.e one will be sparseml the other will be test-sparseml).
# These containers rely on the new internal pypi server being enabled. Once enabled,
# this workflow can be expanded to make this distinction.
env:
RELEASE: ${{ github.event_name =='release' || (startsWith(github.base_ref, 'release/') && github.event_name == 'pull_request')}}
DEV: ${{ github.base_ref == 'main' && github.event_name == 'pull_request'}}
Expand All @@ -26,7 +29,7 @@ permissions:
jobs:
build-container:
name: Build sparseml container
runs-on: [self-hosted, k8s-mle-gpu-32G-a4000-16G]
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down

0 comments on commit e44fa64

Please sign in to comment.