-
Notifications
You must be signed in to change notification settings - Fork 51
158 lines (136 loc) · 4.93 KB
/
kuksa_databroker-cli_build.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
# /********************************************************************************
# * Copyright (c) 2022,2023 Contributors to the Eclipse Foundation
# *
# * See the NOTICE file(s) distributed with this work for additional
# * information regarding copyright ownership.
# *
# * This program and the accompanying materials are made available under the
# * terms of the Apache License 2.0 which is available at
# * http://www.apache.org/licenses/LICENSE-2.0
# *
# * SPDX-License-Identifier: Apache-2.0
# ********************************************************************************/
name: kuksa_databroker-cli_build
on:
push:
branches: [ master ]
pull_request:
paths:
- ".github/workflows/kuksa_databroker-cli_build.yml"
- "kuksa_databroker/**"
- "Cargo.*"
- "Cross.toml"
workflow_call:
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Installing JVM
run: sudo apt update && sudo apt-get install -y default-jre
- uses: actions/checkout@v3
- name: cargo fmt
working-directory: ${{github.workspace}}
run: cargo fmt -- --check
- name: cargo clippy
working-directory: ${{github.workspace}}
run: cargo clippy --all-targets -- -W warnings -D warnings
- name: "Createbom: License check and Dash output generation"
working-directory: ${{github.workspace}}/kuksa_databroker/createbom
run: |
cargo install cargo-license
python3 createbom.py --dash ${{github.workspace}}/dash-databroker-cli-deps ../databroker-cli
- name: Dash license check
uses: ./.github/actions/check-dash
with:
dashinput: ${{github.workspace}}/dash-databroker-cli-deps
checkrights:
uses: ./.github/workflows/check_push_rights.yml
secrets: inherit
# Run on selfhosted, because our runner has native ARM build in a remote
# builder (no need for qemu)
build-container:
runs-on: [ self-hosted ]
needs: checkrights
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
# list of Docker images to use as base name for tags
images: |
ghcr.io/eclipse/kuksa.val/databroker-cli
# generate Docker tags based on the following events/attributes
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
# only needed for runners without buildx setup, will be slow
#- name: Set up QEMU
# uses: docker/setup-qemu-action@v2
# - name: Set up Docker Buildx
# id: buildx
# uses: docker/setup-buildx-action@v2
- name: Log in to the Container registry
if: needs.checkrights.outputs.have_secrets == 'true'
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build kuksa.val databroker CLI container and push to ghcr.io (and ttl.sh)
id: ghcr-build
if: ${{ needs.checkrights.outputs.have_secrets == 'true' && github.event_name != 'pull_request' }}
uses: docker/build-push-action@v4
with:
platforms: |
linux/amd64
linux/arm64
file: ./kuksa_databroker/Dockerfile-cli
context: .
push: true
tags: |
${{ steps.meta.outputs.tags }}
ttl.sh/kuksa.val/kuksa-databroker-cli-${{github.sha}}
labels: ${{ steps.meta.outputs.labels }}
- name: Build ephemereal kuksa.val databroker container and push to ttl.sh
if: ${{ needs.checkrights.outputs.have_secrets == 'false' || github.event_name == 'pull_request' }}
id: tmp-build
uses: docker/build-push-action@v4
with:
platforms: |
linux/amd64
linux/arm64
file: ./kuksa_databroker/Dockerfile-cli
context: .
push: true
tags: "ttl.sh/kuksa.val/kuksa-databroker-cli-${{github.sha}}"
labels: ${{ steps.meta.outputs.labels }}
- name: Posting message
uses: ./.github/actions/post-container-location
with:
image: ttl.sh/kuksa.val/kuksa-databroker-cli-${{github.sha}}
- name: Extracting ARM64 binaries
uses: ./.github/actions/copy-from-oci
with:
platform: linux/arm64
id: databroker-cli-arm64
image: ttl.sh/kuksa.val/kuksa-databroker-cli-${{github.sha}}
src: /app/
export: true
transform: s/app/databroker-cli/
- name: Extracting AMD64 binaries
uses: ./.github/actions/copy-from-oci
with:
platform: linux/amd64
id: databroker-cli-amd64
image: ttl.sh/kuksa.val/kuksa-databroker-cli-${{github.sha}}
src: /app/
export: true
transform: s/app/databroker-cli/