Skip to content

Commit

Permalink
does order count
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurZucker committed Apr 2, 2024
1 parent f69fed8 commit f37a730
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-ci-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ on:
schedule:
- cron: "17 0 * * *"



concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
Expand All @@ -21,14 +23,17 @@ jobs:
build:
# Push CI doesn't need this image
# if: inputs.image_postfix != '-push-ci'
if: |
contains(github.event.head_commit.message, '[push-ci-image]') &&
contains(github.actor, 'transformers') &&
${{ !cancelled() && (success() || failure()) }}
strategy:
matrix:
file: ["quality", "consistency", "custom-tokenizers", "torch-light", "tf-light", "exotic-models"] # Add your file names here

runs-on: ubuntu-22.04
if: |
contains(github.event.head_commit.message, '[push-ci-image]') && contains(github.actor, 'transformers') && ${{ !cancelled() && (success() || failure()) }}

steps:
-
name: Set up Docker Buildx
Expand Down

0 comments on commit f37a730

Please sign in to comment.