-
Notifications
You must be signed in to change notification settings - Fork 70
79 lines (71 loc) · 2.42 KB
/
UploadDockerImages.yml
File metadata and controls
79 lines (71 loc) · 2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Build Images
on:
schedule:
# Run the job daily at 12AM UTC
- cron: '0 0 * * *'
workflow_dispatch:
inputs:
target_device:
description: 'Specify target device (all or tpu)'
required: true
type: choice
default: 'tpu'
options:
- all
- tpu
permissions:
contents: read
jobs:
setup:
runs-on: ubuntu-latest
outputs:
maxdiffusion_sha: ${{ steps.vars.outputs.maxdiffusion_sha }}
image_date: ${{ steps.vars.outputs.image_date }}
steps:
- name: Checkout MaxDiffusion
uses: actions/checkout@v5
- name: Get metadata
id: vars
run: |
# MaxDiffusion SHA
echo "maxdiffusion_sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
# Image date
echo "image_date=$(date +%Y-%m-%d)" >> $GITHUB_OUTPUT
build-image:
name: ${{ matrix.image_name }}
needs: setup
strategy:
fail-fast: false
matrix:
include:
- device: tpu
build_mode: stable
image_name: maxdiffusion_jax_stable
dockerfile: ./maxdiffusion_dependencies.Dockerfile
- device: tpu
build_mode: nightly
image_name: maxdiffusion_jax_nightly
dockerfile: ./maxdiffusion_dependencies.Dockerfile
uses: ./.github/workflows/build_and_push_docker_image.yml
with:
image_name: ${{ matrix.image_name }}
device: ${{ matrix.device }}
build_mode: ${{ matrix.build_mode }}
dockerfile: ${{ matrix.dockerfile }}
maxdiffusion_sha: ${{ needs.setup.outputs.maxdiffusion_sha }}
image_date: ${{ needs.setup.outputs.image_date }}