-
Notifications
You must be signed in to change notification settings - Fork 49
227 lines (214 loc) · 7.72 KB
/
release.yml
File metadata and controls
227 lines (214 loc) · 7.72 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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
#
# Copyright (c) 2022 ZettaScale Technology
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# ZettaScale Zenoh Team, <zenoh@zettascale.tech>
#
name: Release
on:
schedule:
- cron: "0 0 * * 1-5"
workflow_dispatch:
inputs:
live-run:
type: boolean
description: Live-run
required: false
default: false
version:
type: string
description: Release number
required: false
zenoh-version:
type: string
description: Zenoh Release number
required: false
branch:
type: string
description: Release branch
required: false
jobs:
version:
name: Compute version
runs-on: ubuntu-latest
outputs:
version: ${{ steps.version.outputs.version }}
bump-deps-version: ${{ steps.version.outputs.bump-deps-version }}
bump-deps-pattern: ${{ steps.version.outputs.bump-deps-pattern }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for all tags and branches
- id: version
name: Compute version
run: |
if [ -n "${{ inputs.version }}" ] && [ -n "${{ inputs.zenoh-version }}" ]; then
printf "version=%s\n" "${{ inputs.version }}" >> $GITHUB_OUTPUT
{
echo 'bump-deps-version<<EOF'
printf "%s\n%s\n" "${{inputs.version }}" "${{ inputs.zenoh-version }}"
echo EOF
} >> $GITHUB_OUTPUT
{
echo 'bump-deps-pattern<<EOF'
printf "^zenoh-plugin-ros2dds\n^zenoh(?!-plugin-ros2dds)[a-zA-Z0-9-_]*$\n"
echo EOF
} >> $GITHUB_OUTPUT
else
# Extract the version from the latest tag
version=$(git describe --tags)
printf "version=%s\n" "$version" >> $GITHUB_OUTPUT
printf "bump-deps-version=%s\n" "$version" >> $GITHUB_OUTPUT
printf "bump-deps-pattern=^zenoh-plugin-ros2dds$\n" >> $GITHUB_OUTPUT
fi
tag:
name: Branch, Bump & tag crates
needs: version
uses: eclipse-zenoh/ci/.github/workflows/branch-bump-tag-crates.yml@main
with:
repo: ${{ github.repository }}
live-run: ${{ inputs.live-run || false }}
version: ${{ needs.version.outputs.version }}
branch: ${{ inputs.branch }}
bump-deps-version: |
${{ needs.version.outputs.bump-deps-version }}
bump-deps-pattern: |
${{ needs.version.outputs.bump-deps-pattern }}
bump-deps-branch: ${{ needs.version.outputs.version && format('release/{0}', needs.version.outputs.version) || '' }}
secrets: inherit
build-debian:
name: Build Debian packages
needs: tag
uses: eclipse-zenoh/ci/.github/workflows/build-crates-debian.yml@main
with:
repo: ${{ github.repository }}
version: ${{ needs.tag.outputs.version }}
branch: ${{ needs.tag.outputs.branch }}
secrets: inherit
build-standalone:
name: Build executables and libraries
needs: tag
uses: eclipse-zenoh/ci/.github/workflows/build-crates-standalone.yml@main
with:
repo: ${{ github.repository }}
version: ${{ needs.tag.outputs.version }}
branch: ${{ needs.tag.outputs.branch }}
# NOTE: x86_64-pc-windows-gnu is not supported by cyclors
exclude-builds: '[{ build: { target: "x86_64-pc-windows-gnu", os: "windows-2022" } }]'
artifact-patterns: |
^zenoh-bridge-ros2dds(\.exe)?$
^libzenoh_plugin_ros2dds\.(dylib|so)$
^zenoh_plugin_ros2dds\.dll$
secrets: inherit
cargo:
needs: tag
name: Publish Cargo crates
runs-on: ubuntu-latest
steps:
# cyclors 0.2.6 does not compile with cmake 4
- name: Install cmake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: "3.31.x"
- uses: eclipse-zenoh/ci/publish-crates-cargo@main
with:
repo: ${{ github.repository }}
live-run: ${{ inputs.live-run || false }}
branch: ${{ needs.tag.outputs.branch }}
# - In dry-run mode, we need to publish eclipse-zenoh/zenoh before this
# repository, in which case the version of zenoh dependecies are left as
# is and thus point to the main branch of eclipse-zenoh/zenoh.
# - In live-run mode, we assume that eclipse-zenoh/zenoh is already
# published as this workflow can't be responsible for publishing it
unpublished-deps-patterns: ${{ !(inputs.live-run || false) && '^zenoh-plugin-ros2dds$' || '' }}
unpublished-deps-repos: ${{ !(inputs.live-run || false) && 'eclipse-zenoh/zenoh' || '' }}
github-token: ${{ secrets.BOT_TOKEN_WORKFLOW }}
crates-io-token: ${{ secrets.CRATES_IO_TOKEN }}
publication-test: true
debian:
name: Publish Debian packages
needs: [tag, build-debian]
uses: eclipse-zenoh/ci/.github/workflows/release-crates-debian.yml@main
with:
no-build: true
live-run: ${{ inputs.live-run || false }}
version: ${{ needs.tag.outputs.version }}
repo: ${{ github.repository }}
branch: ${{ needs.tag.outputs.branch }}
installation-test: false
secrets: inherit
homebrew:
name: Publish Homebrew formulae
needs: [tag, build-standalone]
uses: eclipse-zenoh/ci/.github/workflows/release-crates-homebrew.yml@main
with:
no-build: true
repo: ${{ github.repository }}
live-run: ${{ inputs.live-run || false }}
version: ${{ needs.tag.outputs.version }}
branch: ${{ needs.tag.outputs.branch }}
artifact-patterns: |
^zenoh-bridge-ros2dds$
^libzenoh_plugin_ros2dds\.dylib$
formulae: |
zenoh-bridge-ros2dds
zenoh-plugin-ros2dds
secrets: inherit
eclipse:
name: Publish artifacts to Eclipse downloads
needs: [tag, build-standalone]
uses: eclipse-zenoh/ci/.github/workflows/release-crates-eclipse.yml@main
with:
no-build: true
live-run: ${{ inputs.live-run || false }}
version: ${{ needs.tag.outputs.version }}
repo: ${{ github.repository }}
branch: ${{ needs.tag.outputs.branch }}
artifact-patterns: |
^zenoh-bridge-ros2dds(\.exe)?$
^libzenoh_plugin_ros2dds\.(dylib|so)$
^zenoh_plugin_ros2dds\.dll$
name: zenoh-plugin-ros2dds
secrets: inherit
github:
name: Publish artifacts to GitHub Releases
needs: [tag, build-standalone]
uses: eclipse-zenoh/ci/.github/workflows/release-crates-github.yml@main
with:
no-build: true
live-run: ${{ inputs.live-run || false }}
version: ${{ needs.tag.outputs.version }}
repo: ${{ github.repository }}
branch: ${{ needs.tag.outputs.branch }}
artifact-patterns: |
^zenoh-bridge-ros2dds(\.exe)?$
^libzenoh_plugin_ros2dds\.(dylib|so)$
^zenoh_plugin_ros2dds\.dll$
secrets: inherit
dockerhub:
name: Publish container image to DockerHub
needs: [tag, build-standalone]
uses: eclipse-zenoh/ci/.github/workflows/release-crates-dockerhub.yml@main
with:
no-build: true
live-run: ${{ inputs.live-run || false }}
version: ${{ needs.tag.outputs.version }}
repo: ${{ github.repository }}
branch: ${{ needs.tag.outputs.branch }}
image: "eclipse/zenoh-bridge-ros2dds"
binary: zenoh-bridge-ros2dds
files: |
zenoh-bridge-ros2dds
libzenoh_plugin_ros2dds.so
platforms: |
linux/arm64
linux/amd64
licenses: EPL-2.0 OR Apache-2.0
secrets: inherit