-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Split Release worklow into nightly and manually dispatched
- Loading branch information
1 parent
1f8dbe4
commit d4b57c3
Showing
3 changed files
with
221 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,186 @@ | ||
# | ||
# Copyright (c) 2023 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, <[email protected]> | ||
# | ||
name: Release (nightly) | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * 1-5" | ||
|
||
jobs: | ||
tag: | ||
name: Bump and tag crates | ||
runs-on: ubuntu-latest | ||
outputs: | ||
version: ${{ steps.create-release-branch.outputs.version }} | ||
branch: ${{ steps.create-release-branch.outputs.branch }} | ||
steps: | ||
- id: create-release-branch | ||
uses: eclipse-zenoh/ci/create-release-branch@main | ||
with: | ||
repo: ${{ github.repository }} | ||
live-run: false | ||
github-token: ${{ secrets.BOT_TOKEN_WORKFLOW }} | ||
|
||
- uses: eclipse-zenoh/ci/bump-crates@main | ||
with: | ||
repo: ${{ github.repository }} | ||
version: ${{ steps.create-release-branch.outputs.version }} | ||
branch: ${{ steps.create-release-branch.outputs.branch }} | ||
bump-deps-pattern: zenoh.* | ||
bump-deps-version: ${{ steps.create-release-branch.outputs.version }} | ||
github-token: ${{ secrets.BOT_TOKEN_WORKFLOW }} | ||
|
||
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 }} | ||
artifact-patterns: | | ||
^zenohd(\.exe)?$ | ||
^libzenoh_plugin_(rest|storage_manager)\.(dylib|so)$ | ||
^zenoh_plugin_(rest|storage_manager)\.dll$ | ||
secrets: inherit | ||
|
||
cargo: | ||
needs: tag | ||
name: Publish Cargo crates | ||
uses: eclipse-zenoh/ci/.github/workflows/release-crates-cargo.yml@main | ||
with: | ||
repo: ${{ github.repository }} | ||
live-run: false | ||
branch: ${{ needs.tag.outputs.branch }} | ||
secrets: inherit | ||
|
||
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: false | ||
version: ${{ needs.tag.outputs.version }} | ||
repo: ${{ github.repository }} | ||
branch: ${{ needs.tag.outputs.branch }} | ||
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: false | ||
version: ${{ needs.tag.outputs.version }} | ||
branch: ${{ needs.tag.outputs.branch }} | ||
artifact-patterns: | | ||
^zenohd$ | ||
^libzenoh_plugin_rest\.dylib$ | ||
^libzenoh_plugin_storage_manager\.dylib$ | ||
formulae: | | ||
zenoh | ||
zenohd | ||
zenoh-plugin-rest | ||
zenoh-plugin-storage-manager | ||
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: false | ||
version: ${{ needs.tag.outputs.version }} | ||
repo: ${{ github.repository }} | ||
branch: ${{ needs.tag.outputs.branch }} | ||
artifact-patterns: | | ||
^zenohd(\.exe)?$ | ||
^libzenoh_plugin_(rest|storage_manager)\.(dylib|so)$ | ||
^zenoh_plugin_(rest|storage_manager)\.dll$ | ||
name: zenoh | ||
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: false | ||
version: ${{ needs.tag.outputs.version }} | ||
repo: ${{ github.repository }} | ||
branch: ${{ needs.tag.outputs.branch }} | ||
artifact-patterns: | | ||
^zenohd(\.exe)?$ | ||
^libzenoh_plugin_(rest|storage_manager)\.(dylib|so)$ | ||
^zenoh_plugin_(rest|storage_manager)\.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: true | ||
version: ${{ needs.tag.outputs.version }} | ||
repo: ${{ github.repository }} | ||
branch: ${{ needs.tag.outputs.branch }} | ||
tags: "eclipse/zenoh:${{ needs.tag.outputs.version }}" | ||
binary: zenohd | ||
files: | | ||
zenohd | ||
libzenoh_plugin_rest.so | ||
libzenoh_plugin_storage_manager.so | ||
platforms: | | ||
linux/arm64 | ||
linux/amd64 | ||
licenses: EPL-2.0 OR Apache-2.0 | ||
secrets: inherit | ||
|
||
ghcr: | ||
name: Publish container image to GitHub Container Registry | ||
needs: [tag, build-standalone] | ||
uses: eclipse-zenoh/ci/.github/workflows/release-crates-ghcr.yml@main | ||
with: | ||
no-build: true | ||
live-run: true | ||
version: ${{ needs.tag.outputs.version }} | ||
repo: ${{ github.repository }} | ||
branch: ${{ needs.tag.outputs.branch }} | ||
tags: "${{ github.repository }}:${{ needs.tag.outputs.version }}" | ||
binary: zenohd | ||
files: | | ||
zenohd | ||
libzenoh_plugin_rest.so | ||
libzenoh_plugin_storage_manager.so | ||
platforms: | | ||
linux/arm64 | ||
linux/amd64 | ||
licenses: EPL-2.0 OR Apache-2.0 | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
# Contributors: | ||
# ZettaScale Zenoh Team, <[email protected]> | ||
# | ||
name: Pre-Release | ||
name: Release (testing) | ||
|
||
on: | ||
schedule: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters