Build Docker images (scheduled) #615
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Docker images (scheduled) | |
on: | |
workflow_dispatch: | |
workflow_call: | |
schedule: | |
- cron: "0 1 * * *" | |
concurrency: | |
group: docker-image-builds | |
cancel-in-progress: false | |
env: | |
CI_SLACK_CHANNEL: ${{ secrets.CI_DOCKER_CHANNEL }} | |
jobs: | |
latest-cpu: | |
name: "Latest Peft CPU [dev]" | |
runs-on: | |
group: aws-general-8-plus | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Build and Push CPU | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./docker/peft-cpu | |
push: true | |
tags: huggingface/peft-cpu | |
- name: Post to Slack | |
if: always() | |
uses: huggingface/hf-workflows/.github/actions/post-slack@main | |
with: | |
slack_channel: ${{ env.CI_SLACK_CHANNEL }} | |
title: 🤗 Results of the PEFT-CPU docker build | |
status: ${{ job.status }} | |
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }} | |
latest-cuda: | |
name: "Latest Peft GPU [dev]" | |
runs-on: | |
group: aws-general-8-plus | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Build and Push GPU | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./docker/peft-gpu | |
push: true | |
tags: huggingface/peft-gpu | |
- name: Post to Slack | |
if: always() | |
uses: huggingface/hf-workflows/.github/actions/post-slack@main | |
with: | |
slack_channel: ${{ env.CI_SLACK_CHANNEL }} | |
title: 🤗 Results of the PEFT-GPU docker build | |
status: ${{ job.status }} | |
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }} | |
latest-cuda-bnb-source: | |
name: "Latest Peft GPU + bnb source [dev]" | |
runs-on: | |
group: aws-general-8-plus | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Build and Push GPU | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./docker/peft-gpu-bnb-source | |
push: true | |
tags: huggingface/peft-gpu-bnb-source | |
- name: Post to Slack | |
if: always() | |
uses: huggingface/hf-workflows/.github/actions/post-slack@main | |
with: | |
slack_channel: ${{ env.CI_SLACK_CHANNEL }} | |
title: 🤗 Results of the PEFT-GPU (bnb source / HF latest) docker build | |
status: ${{ job.status }} | |
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }} | |
latest-cuda-bnb-source-latest: | |
name: "Latest Peft GPU + bnb source [accelerate / peft / transformers latest]" | |
runs-on: | |
group: aws-general-8-plus | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Build and Push GPU | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./docker/peft-gpu-bnb-latest | |
push: true | |
tags: huggingface/peft-gpu-bnb-latest | |
- name: Post to Slack | |
if: always() | |
uses: huggingface/hf-workflows/.github/actions/post-slack@main | |
with: | |
slack_channel: ${{ env.CI_SLACK_CHANNEL }} | |
title: 🤗 Results of the PEFT-GPU (bnb source / HF source) docker build | |
status: ${{ job.status }} | |
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }} | |
latest-cuda-bnb-source-multi: | |
name: "Latest Peft GPU + bnb (multi-backend) source [accelerate / peft / transformers source]" | |
runs-on: | |
group: aws-general-8-plus | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Build and Push GPU | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./docker/peft-gpu-bnb-multi-source | |
push: true | |
tags: huggingface/peft-gpu-bnb-multi-source | |
- name: Post to Slack | |
if: always() | |
uses: huggingface/hf-workflows/.github/actions/post-slack@main | |
with: | |
slack_channel: ${{ env.CI_SLACK_CHANNEL }} | |
title: 🤗 Results of the PEFT-GPU (bnb source multi-backend / HF latest) docker build | |
status: ${{ job.status }} | |
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }} | |