Skip to content

Commit

Permalink
Auto-build Docker images before on-merge if setup.py was changed (hug…
Browse files Browse the repository at this point in the history
…gingface#17573)

* Auto-build on setup modification

* Modify push-caller

* Make adjustments based on code review
  • Loading branch information
muellerzr authored and younesbelkada committed Jun 25, 2022
1 parent cec55aa commit 75cd190
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- docker-image*
repository_dispatch:
workflow_call:
schedule:
- cron: "0 1 * * *"

Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/self-push-caller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,40 @@ on:
- "utils/**"

jobs:
check-for-setup:
runs-on: ubuntu-latest
name: Check if setup was changed
outputs:
changed: ${{ steps.was_changed.outputs.changed }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: "2"

- name: Get changed files
id: changed-files
uses: tj-actions/[email protected]

- name: Was setup changed
id: was_changed
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
if [ `basename "${file}"` = "setup.py" ]; then
echo ::set-output name=changed::"1"
fi
done
build-docker-containers:
needs: check-for-setup
if: (github.event_name == 'push') && (needs.check-for-setup.outputs.changed == '1')
uses: ./.github/workflows/build-docker-images.yml
secrets: inherit

run_push_ci:
name: Trigger Push CI
runs-on: ubuntu-latest
if: ${{ always() }}
needs: build-docker-containers
steps:
- name: Trigger push CI via workflow_run
run: echo "Trigger push CI via workflow_run"

0 comments on commit 75cd190

Please sign in to comment.