This is an automated email from the ASF dual-hosted git repository.

Ethan-Xingyue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-seata-go.git


The following commit(s) were added to refs/heads/master by this push:
     new e7a1eb9e [feat]: support risc-v build (#1142)
e7a1eb9e is described below

commit e7a1eb9e4face0e21c36d9aeb5b314222c1a30d0
Author: ssshr-66 <[email protected]>
AuthorDate: Tue Aug 4 12:15:19 2026 +0800

    [feat]: support risc-v build (#1142)
    
    support risc-v build
---
 .github/workflows/build.yml | 21 ++++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e1086a80..68376f71 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -72,4 +72,23 @@ jobs:
           token: ${{ secrets.CODECOV_TOKEN }}
           version: v0.6.0
         env:
-          CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
\ No newline at end of file
+          CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
+
+  build-riscv:
+    name: "build for RISC-V"
+    runs-on: ubuntu-latest
+
+    steps:
+      - name: "set up go"
+        uses: actions/setup-go@v3
+        with:
+          go-version: 1.20.14
+
+      - name: "checkout ${{ github.ref }}"
+        uses: actions/checkout@v3
+
+      - name: "build for RISC-V 64-bit"
+        env:
+          GOOS: linux
+          GOARCH: riscv64
+        run: go build -v ./...
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to