-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #435 from ava-labs/dockerize-sig-aggregator
dockerize signature aggregator
- Loading branch information
Showing
7 changed files
with
160 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
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,69 @@ | ||
# Copyright (C) 2024, Ava Labs, Inc. All rights reserved. | ||
# See the file LICENSE for licensing terms. | ||
|
||
name: Release signature-aggregator | ||
|
||
on: | ||
push: | ||
tags: | ||
- "signature-aggregator/*" | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: 'go.mod' | ||
|
||
- name: Set up arm64 cross compiler | ||
run: | | ||
sudo apt-get -y update | ||
sudo apt-get -y install gcc-aarch64-linux-gnu | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Checkout osxcross | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: tpoechtrager/osxcross | ||
path: osxcross | ||
|
||
- name: Build osxcross | ||
run: | | ||
sudo apt-get -y install clang llvm-dev libxml2-dev uuid-dev libssl-dev bash patch make tar xz-utils bzip2 gzip sed cpio libbz2-dev | ||
cd osxcross | ||
wget https://github.com/joseluisq/macosx-sdks/releases/download/12.3/$MACOS_SDK_FNAME -O tarballs/$MACOS_SDK_FNAME | ||
echo $MACOS_SDK_CHECKSUM tarballs/$MACOS_SDK_FNAME | sha256sum -c - | ||
UNATTENDED=1 ./build.sh | ||
echo $PWD/target/bin >> $GITHUB_PATH | ||
env: | ||
MACOS_SDK_FNAME: MacOSX12.3.sdk.tar.xz | ||
MACOS_SDK_CHECKSUM: 3abd261ceb483c44295a6623fdffe5d44fc4ac2c872526576ec5ab5ad0f6e26c | ||
|
||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v6 | ||
with: | ||
distribution: goreleaser-pro | ||
version: latest | ||
args: release --clean --config signature-aggregator/.goreleaser.yml | ||
env: | ||
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#about-the-github_token-secret | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} |
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
FROM debian:11-slim | ||
COPY awm-relayer /usr/bin/awm-relayer | ||
EXPOSE 8080 | ||
USER 1001 | ||
CMD ["start"] | ||
ENTRYPOINT [ "/usr/bin/awm-relayer" ] |
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,68 @@ | ||
# ref. https://goreleaser.com/customization/build/ | ||
project_name: signature-aggregator | ||
monorepo: | ||
tag_prefix: signature-aggregator/ | ||
builds: | ||
- id: signature-aggregator | ||
main: ./signature-aggregator/main/main.go | ||
binary: signature-aggregator | ||
flags: | ||
- -v | ||
# windows is ignored by default, as the `goos` field by default only | ||
# contains linux and darwin | ||
goos: | ||
- linux | ||
- darwin | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
env: | ||
- CGO_ENABLED=1 | ||
- CGO_CFLAGS=-O -D__BLST_PORTABLE__ # Set the CGO flags to use the portable version of BLST | ||
overrides: | ||
- goos: linux | ||
goarch: arm64 | ||
env: | ||
- CC=aarch64-linux-gnu-gcc | ||
- goos: darwin | ||
goarch: arm64 | ||
env: | ||
- CC=oa64-clang | ||
ignore: | ||
- goos: darwin | ||
goarch: amd64 | ||
dockers: | ||
- image_templates: | ||
- 'avaplatform/signature-aggregator:{{ .Tag }}-amd64' | ||
use: buildx | ||
build_flag_templates: | ||
- "--pull" | ||
- "--platform=linux/amd64" | ||
dockerfile: "signature-aggregator/Dockerfile" | ||
- image_templates: | ||
- 'avaplatform/signature-aggregator:{{ .Tag }}-arm64' | ||
use: buildx | ||
build_flag_templates: | ||
- "--pull" | ||
- "--platform=linux/arm64" | ||
dockerfile: "signature-aggregator/Dockerfile" | ||
goarch: arm64 | ||
docker_manifests: | ||
- name_template: 'avaplatform/signature-aggregator:{{ .Tag }}' | ||
image_templates: | ||
- 'avaplatform/signature-aggregator:{{ .Tag }}-amd64' | ||
- 'avaplatform/signature-aggregator:{{ .Tag }}-arm64' | ||
- name_template: 'avaplatform/signature-aggregator:latest' | ||
image_templates: | ||
- 'avaplatform/signature-aggregator:{{ .Tag }}-amd64' | ||
- 'avaplatform/signature-aggregator:{{ .Tag }}-arm64' | ||
# If tag is an rc, do not push the latest tag | ||
skip_push: auto | ||
release: | ||
# Repo in which the release will be created. | ||
# Default is extracted from the origin remote URL or empty if its private hosted. | ||
github: | ||
owner: ava-labs | ||
name: awm-relayer | ||
# If tag indicates rc, will mark it as prerelease | ||
prerelease: auto |
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,6 @@ | ||
FROM debian:11-slim | ||
COPY signature-aggregator /usr/bin/signature-aggregator | ||
EXPOSE 8080 | ||
EXPOSE 8081 | ||
CMD ["start"] | ||
ENTRYPOINT [ "/usr/bin/signature-aggregator" ] |