-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
61 changed files
with
3,354 additions
and
1 deletion.
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,66 @@ | ||
name: goreleaser | ||
|
||
on: | ||
push: | ||
tags: | ||
- v*.*.* | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
goreleaser: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- | ||
name: Install dependencies for cross-compiling | ||
run: | | ||
sudo apt update | ||
sudo apt-get --no-install-recommends --yes install \ | ||
libc6-dev-amd64-cross \ | ||
gcc-aarch64-linux-gnu libc6-dev-arm64-cross \ | ||
gcc-arm-linux-gnueabihf libc6-dev-armhf-cross | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- | ||
name: Fetch all tags | ||
run: git fetch --force --tags | ||
- name: Get version | ||
id: get_version | ||
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//} | ||
- | ||
name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.19 | ||
- | ||
name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v2 | ||
with: | ||
# either 'goreleaser' (default) or 'goreleaser-pro' | ||
distribution: goreleaser | ||
version: latest | ||
args: release --rm-dist | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution | ||
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} | ||
- name: Upload to oss | ||
id: upload_to_oss | ||
uses: tvrcgo/upload-to-oss@master | ||
with: | ||
key-id: ${{ secrets.OSS_KEY_ID }} | ||
key-secret: ${{ secrets.OSS_KEY_SECRET }} | ||
region: oss-cn-shanghai | ||
bucket: casaos | ||
assets: | | ||
dist/checksums.txt:/IceWhaleTech/CasaOS/releases/download/${{ steps.get_version.outputs.VERSION }}/checksums.txt | ||
dist/linux-arm-7-casaos-message-bus-${{ steps.get_version.outputs.VERSION }}.tar.gz:/IceWhaleTech/CasaOS-MessageBus/releases/download/${{ steps.get_version.outputs.VERSION }}/linux-arm-7-casaos-message-bus-${{ steps.get_version.outputs.VERSION }}.tar.gz | ||
dist/linux-arm64-casaos-message-bus-${{ steps.get_version.outputs.VERSION }}.tar.gz:/IceWhaleTech/CasaOS-MessageBus/releases/download/${{ steps.get_version.outputs.VERSION }}/linux-arm64-casaos-message-bus-${{ steps.get_version.outputs.VERSION }}.tar.gz | ||
dist/linux-amd64-casaos-message-bus-${{ steps.get_version.outputs.VERSION }}.tar.gz:/IceWhaleTech/CasaOS-MessageBus/releases/download/${{ steps.get_version.outputs.VERSION }}/linux-amd64-casaos-message-bus-${{ steps.get_version.outputs.VERSION }}.tar.gz | ||
dist/linux-arm-7-casaos-message-bus-migration-tool-${{ steps.get_version.outputs.VERSION }}.tar.gz:/IceWhaleTech/CasaOS-MessageBus/releases/download/${{ steps.get_version.outputs.VERSION }}/linux-arm-7-casaos-message-bus-migration-tool-${{ steps.get_version.outputs.VERSION }}.tar.gz | ||
dist/linux-arm64-casaos-message-bus-migration-tool-${{ steps.get_version.outputs.VERSION }}.tar.gz:/IceWhaleTech/CasaOS-MessageBus/releases/download/${{ steps.get_version.outputs.VERSION }}/linux-arm64-casaos-message-bus-migration-tool-${{ steps.get_version.outputs.VERSION }}.tar.gz | ||
dist/linux-amd64-casaos-message-bus-migration-tool-${{ steps.get_version.outputs.VERSION }}.tar.gz:/IceWhaleTech/CasaOS-MessageBus/releases/download/${{ steps.get_version.outputs.VERSION }}/linux-amd64-casaos-message-bus-migration-tool-${{ steps.get_version.outputs.VERSION }}.tar.gz |
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
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,151 @@ | ||
# This is an example .goreleaser.yml file with some sensible defaults. | ||
# Make sure to check the documentation at https://goreleaser.com | ||
project_name: casaos-message-bus | ||
before: | ||
hooks: | ||
- go generate | ||
- go mod tidy | ||
- go test -v ./... | ||
builds: | ||
- id: casaos-message-bus-amd64 | ||
binary: build/sysroot/usr/bin/casaos-message-bus | ||
env: | ||
- CGO_ENABLED=1 | ||
- CC=x86_64-linux-gnu-gcc | ||
gcflags: | ||
- all=-N -l | ||
ldflags: | ||
- -extldflags "-static" | ||
tags: | ||
- musl | ||
- netgo | ||
goos: | ||
- linux | ||
goarch: | ||
- amd64 | ||
- id: casaos-message-bus-arm64 | ||
binary: build/sysroot/usr/bin/casaos-message-bus | ||
env: | ||
- CGO_ENABLED=1 | ||
- CC=aarch64-linux-gnu-gcc | ||
gcflags: | ||
- all=-N -l | ||
ldflags: | ||
- -extldflags "-static" | ||
tags: | ||
- musl | ||
- netgo | ||
goos: | ||
- linux | ||
goarch: | ||
- arm64 | ||
- id: casaos-message-bus-arm-7 | ||
binary: build/sysroot/usr/bin/casaos-message-bus | ||
env: | ||
- CGO_ENABLED=1 | ||
- CC=arm-linux-gnueabihf-gcc | ||
gcflags: | ||
- all=-N -l | ||
ldflags: | ||
- -extldflags "-static" | ||
tags: | ||
- musl | ||
- netgo | ||
goos: | ||
- linux | ||
goarch: | ||
- arm | ||
goarm: | ||
- "7" | ||
- id: casaos-message-bus-migration-tool-amd64 | ||
binary: build/sysroot/usr/bin/casaos-message-bus-migration-tool | ||
main: ./cmd/migration-tool | ||
env: | ||
- CGO_ENABLED=1 | ||
- CC=x86_64-linux-gnu-gcc | ||
gcflags: | ||
- all=-N -l | ||
ldflags: | ||
- -extldflags "-static" | ||
tags: | ||
- musl | ||
- netgo | ||
goos: | ||
- linux | ||
goarch: | ||
- amd64 | ||
- id: casaos-message-bus-migration-tool-arm64 | ||
binary: build/sysroot/usr/bin/casaos-message-bus-migration-tool | ||
main: ./cmd/migration-tool | ||
env: | ||
- CGO_ENABLED=1 | ||
- CC=aarch64-linux-gnu-gcc | ||
gcflags: | ||
- all=-N -l | ||
ldflags: | ||
- -extldflags "-static" | ||
tags: | ||
- musl | ||
- netgo | ||
goos: | ||
- linux | ||
goarch: | ||
- arm64 | ||
- id: casaos-message-bus-migration-tool-arm-7 | ||
binary: build/sysroot/usr/bin/casaos-message-bus-migration-tool | ||
main: ./cmd/migration-tool | ||
env: | ||
- CGO_ENABLED=1 | ||
- CC=arm-linux-gnueabihf-gcc | ||
gcflags: | ||
- all=-N -l | ||
ldflags: | ||
- -extldflags "-static" | ||
tags: | ||
- musl | ||
- netgo | ||
goos: | ||
- linux | ||
goarch: | ||
- arm | ||
goarm: | ||
- "7" | ||
archives: | ||
- name_template: "{{ .Os }}-{{ .Arch }}-{{ .ProjectName }}-v{{ .Version }}" | ||
id: casaos-message-bus | ||
builds: | ||
- casaos-message-bus-amd64 | ||
- casaos-message-bus-arm64 | ||
- casaos-message-bus-arm-7 | ||
replacements: | ||
arm: arm-7 | ||
files: | ||
- build/**/* | ||
- name_template: "{{ .Os }}-{{ .Arch }}-{{ .ProjectName }}-migration-tool-v{{ .Version }}" | ||
id: casaos-message-bus-migration-tool | ||
builds: | ||
- casaos-message-bus-migration-tool-amd64 | ||
- casaos-message-bus-migration-tool-arm64 | ||
- casaos-message-bus-migration-tool-arm-7 | ||
replacements: | ||
arm: arm-7 | ||
files: | ||
- build/sysroot/etc/**/* | ||
checksum: | ||
name_template: "checksums.txt" | ||
snapshot: | ||
name_template: "{{ incpatch .Version }}-snapshot" | ||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- "^docs:" | ||
- "^test:" | ||
release: | ||
github: | ||
owner: IceWhaleTech | ||
name: CasaOS-MessageBus | ||
draft: true | ||
prerelease: auto | ||
mode: replace | ||
name_template: "v{{ .Version }}" |
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,151 @@ | ||
# This is an example .goreleaser.yml file with some sensible defaults. | ||
# Make sure to check the documentation at https://goreleaser.com | ||
project_name: casaos-message-bus | ||
before: | ||
hooks: | ||
- go generate | ||
- go mod tidy | ||
- go test -v ./... | ||
builds: | ||
- id: casaos-message-bus-amd64 | ||
binary: build/sysroot/usr/bin/casaos-message-bus | ||
env: | ||
- CGO_ENABLED=1 | ||
- CC=x86_64-linux-gnu-gcc | ||
ldflags: | ||
- -s | ||
- -w | ||
- -extldflags "-static" | ||
tags: | ||
- musl | ||
- netgo | ||
goos: | ||
- linux | ||
goarch: | ||
- amd64 | ||
- id: casaos-message-bus-arm64 | ||
binary: build/sysroot/usr/bin/casaos-message-bus | ||
env: | ||
- CGO_ENABLED=1 | ||
- CC=aarch64-linux-gnu-gcc | ||
ldflags: | ||
- -s | ||
- -w | ||
- -extldflags "-static" | ||
tags: | ||
- musl | ||
- netgo | ||
goos: | ||
- linux | ||
goarch: | ||
- arm64 | ||
- id: casaos-message-bus-arm-7 | ||
binary: build/sysroot/usr/bin/casaos-message-bus | ||
env: | ||
- CGO_ENABLED=1 | ||
- CC=arm-linux-gnueabihf-gcc | ||
ldflags: | ||
- -s | ||
- -w | ||
- -extldflags "-static" | ||
tags: | ||
- musl | ||
- netgo | ||
goos: | ||
- linux | ||
goarch: | ||
- arm | ||
goarm: | ||
- "7" | ||
- id: casaos-message-bus-migration-tool-amd64 | ||
binary: build/sysroot/usr/bin/casaos-message-bus-migration-tool | ||
main: ./cmd/migration-tool | ||
env: | ||
- CGO_ENABLED=1 | ||
- CC=x86_64-linux-gnu-gcc | ||
ldflags: | ||
- -s | ||
- -w | ||
- -extldflags "-static" | ||
tags: | ||
- musl | ||
- netgo | ||
goos: | ||
- linux | ||
goarch: | ||
- amd64 | ||
- id: casaos-message-bus-migration-tool-arm64 | ||
binary: build/sysroot/usr/bin/casaos-message-bus-migration-tool | ||
main: ./cmd/migration-tool | ||
env: | ||
- CGO_ENABLED=1 | ||
- CC=aarch64-linux-gnu-gcc | ||
ldflags: | ||
- -s | ||
- -w | ||
- -extldflags "-static" | ||
tags: | ||
- musl | ||
- netgo | ||
goos: | ||
- linux | ||
goarch: | ||
- arm64 | ||
- id: casaos-message-bus-migration-tool-arm-7 | ||
binary: build/sysroot/usr/bin/casaos-message-bus-migration-tool | ||
main: ./cmd/migration-tool | ||
env: | ||
- CGO_ENABLED=1 | ||
- CC=arm-linux-gnueabihf-gcc | ||
ldflags: | ||
- -s | ||
- -w | ||
- -extldflags "-static" | ||
tags: | ||
- musl | ||
- netgo | ||
goos: | ||
- linux | ||
goarch: | ||
- arm | ||
goarm: | ||
- "7" | ||
archives: | ||
- name_template: "{{ .Os }}-{{ .Arch }}-{{ .ProjectName }}-v{{ .Version }}" | ||
id: casaos-message-bus | ||
builds: | ||
- casaos-message-bus-amd64 | ||
- casaos-message-bus-arm64 | ||
- casaos-message-bus-arm-7 | ||
replacements: | ||
arm: arm-7 | ||
files: | ||
- build/**/* | ||
- name_template: "{{ .Os }}-{{ .Arch }}-{{ .ProjectName }}-migration-tool-v{{ .Version }}" | ||
id: casaos-message-bus-migration-tool | ||
builds: | ||
- casaos-message-bus-migration-tool-amd64 | ||
- casaos-message-bus-migration-tool-arm64 | ||
- casaos-message-bus-migration-tool-arm-7 | ||
replacements: | ||
arm: arm-7 | ||
files: | ||
- build/sysroot/etc/**/* | ||
checksum: | ||
name_template: "checksums.txt" | ||
snapshot: | ||
name_template: "{{ incpatch .Version }}-snapshot" | ||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- "^docs:" | ||
- "^test:" | ||
release: | ||
github: | ||
owner: IceWhaleTech | ||
name: CasaOS-MessageBus | ||
draft: true | ||
prerelease: auto | ||
mode: replace | ||
name_template: "v{{ .Version }}" |
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 |
---|---|---|
@@ -1,2 +1,7 @@ | ||
# CasaOS-MessageBus | ||
Message bus accepts events and actions from various sources and delivers them to subscribers | ||
|
||
[![Go Reference](https://pkg.go.dev/badge/github.com/IceWhaleTech/CasaOS-MessageBus.svg)](https://pkg.go.dev/github.com/IceWhaleTech/CasaOS-MessageBus) [![Go Report Card](https://goreportcard.com/badge/github.com/IceWhaleTech/CasaOS-MessageBus)](https://goreportcard.com/report/github.com/IceWhaleTech/CasaOS-MessageBus) [![goreleaser](https://github.com/IceWhaleTech/CasaOS-MessageBus/actions/workflows/release.yml/badge.svg)](https://github.com/IceWhaleTech/CasaOS-MessageBus/actions/workflows/release.yml) | ||
|
||
Message bus accepts events and actions from various sources and delivers them to subscribers. | ||
|
||
See [openapi.yaml](./api/message_bus/openapi.yaml) for API specification. |
Oops, something went wrong.