From de7112fed27a56eeaeb8c48cb381a1a83c6a6f90 Mon Sep 17 00:00:00 2001 From: Tom Wieczorek Date: Tue, 10 Oct 2023 18:51:49 +0200 Subject: [PATCH] feat: Build and release binaries for Linux RISC-V (#1356) * Add riscv64 to GOARCHes in .goreleaser.yaml * Add riscv64/linux to goreleaser-test GitHub workflow job --- .github/workflows/build-test-deploy.yaml | 2 ++ deploy/.goreleaser.yaml | 3 +++ 2 files changed, 5 insertions(+) diff --git a/.github/workflows/build-test-deploy.yaml b/.github/workflows/build-test-deploy.yaml index 97ec75e94..824ffa66d 100644 --- a/.github/workflows/build-test-deploy.yaml +++ b/.github/workflows/build-test-deploy.yaml @@ -271,6 +271,8 @@ jobs: include: - goarch: arm goos: linux + - goarch: riscv64 + goos: linux steps: - name: Checkout uses: actions/checkout@v4 diff --git a/deploy/.goreleaser.yaml b/deploy/.goreleaser.yaml index 4ed3914d6..b543e855c 100644 --- a/deploy/.goreleaser.yaml +++ b/deploy/.goreleaser.yaml @@ -15,6 +15,7 @@ builds: - amd64 - arm - arm64 + - riscv64 ignore: - goos: windows goarch: arm @@ -38,6 +39,7 @@ builds: - amd64 - arm - arm64 + - riscv64 ignore: - goos: windows goarch: arm @@ -61,6 +63,7 @@ builds: - amd64 - arm - arm64 + - riscv64 ignore: - goos: windows goarch: arm