-
Notifications
You must be signed in to change notification settings - Fork 1
134 lines (115 loc) · 4.13 KB
/
build_base_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
name: Build Monorepo Base Images
on:
workflow_dispatch:
jobs:
setup-environment:
name: Setup environment
runs-on: ubuntu-latest
outputs:
registry: ${{ steps.docker-environment.outputs.registry }}
repository: ${{ steps.docker-environment.outputs.repository }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Watod Environment
run: ./watod_scripts/watod-setup-env.sh
shell: bash
- name: Generate Docker Environment
id: docker-environment
uses: "./.github/templates/docker_context"
base-matrix-prep:
name: Prepare Base Image Matrix JSON
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.prep.outputs.matrix }}
auth_users: ${{ steps.prep.outputs.auth_users }}
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup Base Image Matrix and Auth
id: prep
run: |
MATRIX=$(jq -c . .github/include/base_image_config.json)
echo "Base Image Matrix: $MATRIX"
echo "matrix=$MATRIX" >> $GITHUB_OUTPUT
build:
name: Build Base Images
runs-on: ubuntu-latest
needs: [ setup-environment, base-matrix-prep ]
env:
DOCKER_REGISTRY: ${{ needs.setup-environment.outputs.registry }}
DOCKER_REPOSITORY: ${{ needs.setup-environment.outputs.repository }}
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.base-matrix-prep.outputs.matrix) }}
concurrency:
group: ${{ matrix.tag }}-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
# Initial workflow setup
- name: Checkout repository
uses: actions/checkout@v3
- name: Construct Registry URL
id: construct-registry-url
run: |
echo "url=${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_REPOSITORY }}/base:${{ matrix.tag }}" \
>> $GITHUB_OUTPUT
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
id: buildx
- name: Docker Login
uses: docker/login-action@v3
with:
registry: ${{ env.DOCKER_REGISTRY }}
username: ${{ secrets.GHCR_USER }}
password: ${{ secrets.GHCR_PWD }}
- name: Inject ROS2 into Image
if: ${{ matrix.injections.ros2 != '' }}
uses: docker/build-push-action@v5
with:
context: .
file: docker/base/inject_ros2.Dockerfile
push: true
tags: |
${{ steps.construct-registry-url.outputs.url }}_generic
cache-from: |
${{ steps.construct-registry-url.outputs.url }}_generic
cache-to: type=inline
builder: ${{ steps.buildx.outputs.name }}
target: devel
build-args: |
GENERIC_IMAGE=${{ matrix.external_image }}
ROS_DISTRO=${{ matrix.injections.ros2 }}
- name: Inject OpenCV into Image
if: ${{ matrix.injections.opencv != '' }}
uses: docker/build-push-action@v5
with:
context: .
file: docker/base/inject_opencv.Dockerfile
push: true
tags: |
${{ steps.construct-registry-url.outputs.url }}_generic
cache-from: |
${{ steps.construct-registry-url.outputs.url }}_generic
cache-to: type=inline
builder: ${{ steps.buildx.outputs.name }}
target: devel
build-args: |
GENERIC_IMAGE=${{ matrix.external_image }}
OPENCV_VERSION=${{ matrix.injections.opencv }}
- name: Prepare Generic Image as Monorepo Base Image
uses: docker/build-push-action@v5
with:
context: .
file: docker/base/inject_wato_base.Dockerfile
push: true
tags: |
${{ steps.construct-registry-url.outputs.url }}
cache-from: |
${{ steps.construct-registry-url.outputs.url }}
cache-to: type=inline
builder: ${{ steps.buildx.outputs.name }}
target: wato_base
build-args: |
GENERIC_IMAGE=${{ steps.construct-registry-url.outputs.url }}_generic
USER_PASSWD=${{ secrets.MONOREPO_PASSWD }}