-
Notifications
You must be signed in to change notification settings - Fork 1
158 lines (141 loc) · 4.82 KB
/
push-docker-images.yml
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
name: Build and Publish Docker Images
on:
workflow_dispatch:
inputs:
branch:
description: "Target branch from which the source dockerfile from image will be sourced"
schedule:
- cron: "0 4 * * 1-5" # UTC Time
# Added for testing purposes. Will remove once the PR is finalised
pull_request:
branches:
- '**'
jobs:
push:
runs-on: ubuntu-22.04
continue-on-error: true
strategy:
matrix:
images:
# - image_name: commerce-coordinator
# name: commerce coordinator
# os_platform: linux/arm64
# target: app
# - image_name: course-discovery
# name: course discovery
# os_platform: linux/arm64
# target: dev
# owning_team_email: [email protected]
# - image_name: credentials
# name: credentials
# os_platform: linux/arm64
# target: dev
# owning_team_email: [email protected]
#
# - image_name: ecommerce
# name: ecommerce
# os_platform: linux/arm64
# target: dev
- image_name: edx-analytics-dashboard
name: edx analytics dashboard
os_platform: linux/arm64
target: dev
# - image_name: edx-analytics-data-api
# name: edx analytics data api
# os_platform: linux/arm64
# target: dev
#
# - image_name: edx-exams
# name: edx exams
# os_platform: linux/arm64
# target: app
#
# - dockerfile: edx-platform
# image_name: cms-dev
# name: lms
# os_platform: linux/amd64,linux/arm64
# target: development
# build_args: |
# SERVICE_VARIANT: cms
# SERVICE_PORT: 18010
#
# - dockerfile: edx-platform
# image_name: lms-dev
# name: lms
# os_platform: linux/amd64,linux/arm64
# target: development
# build_args: |
# SERVICE_VARIANT: lms
# SERVICE_PORT: 18000
#
# - image_name: edx-notes-api
# name: edx notes api
# os_platform: linux/arm64
# target: dev
- image_name: enterprise-access
name: enterprise access
os_platform: linux/arm64
target: devstack
# - image_name: enterprise-catalog
# name: enterprise catalog
# os_platform: linux/arm64
# target: legacy_devapp
#
# - image_name: enterprise-subsidy
# name: enterprise subsidy
# os_platform: linux/arm64
# target: devstack
#
# - image_name: program-intent-engagement
# name: program intent engagement
# os_platform: linux/arm64
# target: app
#
# - image_name: registrar
# name: registrar
# os_platform: linux/arm64
# target: dev
#
# - image_name: xqueue
# name: xqueue
# os_platform: linux/arm64
# target: dev
steps:
- name: Get tag name
id: get-tag-name
uses: actions/github-script@v7
with:
script: |
const tagName = "${{ github.event.inputs.branch }}" || 'latest';
console.log('Will use tag: ' + tagName);
return tagName;
result-encoding: string
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build and push Dev Docker image
uses: docker/build-push-action@v6
with:
file: ./dockerfiles/${{matrix.images.dockerfile || matrix.images.image_name}}.Dockerfile
push: true
platforms: ${{ matrix.images.os_platform }}
target: ${{ matrix.images.target }}
tags: edxops/${{matrix.images.image_name}}-dev:${{ steps.get-tag-name.outputs.result }}
- name: Send failure notification
if: ${{ failure() && (matrix.images.owning_team_email) }}
uses: dawidd6/action-send-mail@v3
with:
server_address: email-smtp.us-east-1.amazonaws.com
server_port: 465
username: ${{secrets.edx_smtp_username}}
password: ${{secrets.edx_smtp_password}}
subject: Push Image to docker.io/edxops failed in ${{matrix.images.name}}
to: ${{matrix.images.owning_team_email}}
from: github-actions <[email protected]>
body: Push Image to docker.io/edxops for ${{matrix.images.name}} failed! For details see "github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"