-
Notifications
You must be signed in to change notification settings - Fork 1
106 lines (91 loc) · 3.06 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
name: Build Monorepo Base Images
on:
workflow_dispatch:
inputs:
pull_image:
description: "Pull Images from GitHub Registry"
type: boolean
default: true
push_image:
description: "Push Images to GitHub Registry"
type: boolean
default: true
pull_request:
branches:
- main
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"
build:
name: Build Image and Run Initial Unit Testing Suite
runs-on: ubuntu-latest
needs: setup-environment
env:
DOCKER_REGISTRY: ${{ needs.setup.outputs.registry }}
DOCKER_REPOSITORY: ${{ needs.setup.outputs.repository }}
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.matrix-prep.outputs.matrix) }}
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: $( -z "${{ 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_BASE=${{ matrix.external_image }}
ROS_DISTRO=${{ matrix.injections.ros2 }}
- name: Prepare Generic Image as Monorepo Base Image
uses: docker/build-push-action@v5
with:
context: .
file: docker/base/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_BASE=${{ steps.construct-registry-url.outputs.url }}_generic