File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 7
7
config :
8
8
- {arch: x86_64, branch: latest-stable}
9
9
- {arch: aarch64, branch: latest-stable}
10
- - {arch: riscv64, branch: edge}
11
10
runs-on : ubuntu-latest
12
11
steps :
13
12
- name : Checkout
21
20
shell : alpine.sh --root {0}
22
21
run : apk add git cmake gcc g++ make go
23
22
- name : Test
23
+ shell : alpine.sh --root {0}
24
24
run : go test -v
25
+
25
26
build-windows :
26
27
runs-on : windows-latest
27
28
steps :
30
31
- name : Setup
31
32
uses : actions/setup-go@v4
32
33
with :
33
- go-version : 1.21
34
+ go-version : 1.23
34
35
- name : Test
35
36
run : go test -v
37
+
36
38
build-darwin :
37
39
strategy :
38
40
matrix :
@@ -46,12 +48,13 @@ jobs:
46
48
- name : Setup
47
49
uses : actions/setup-go@v4
48
50
with :
49
- go-version : 1.21
51
+ go-version : 1.23
50
52
- name : Test
51
53
run : |
52
54
export GOARCH=${{ matrix.config.arch }}
53
55
export GOOS=darwin
54
56
go test -v
57
+
55
58
release :
56
59
needs : [build-alpine, build-windows, build-darwin]
57
60
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -4,8 +4,6 @@ package randomy
4
4
//#cgo LDFLAGS: -lrandomx -lstdc++
5
5
//#cgo linux,amd64 LDFLAGS:-L${SRCDIR}/build/linux-x86_64 -lm
6
6
//#cgo linux,arm64 LDFLAGS:-L${SRCDIR}/build/linux-arm64 -lm
7
- //#cgo linux,aarch64 LDFLAGS:-L${SRCDIR}/build/linux-aarch64 -lm
8
- //#cgo linux,riscv64 LDFLAGS:-L${SRCDIR}/build/linux-riscv64 -lm
9
7
//#cgo darwin,amd64 LDFLAGS:-L${SRCDIR}/build/darwin-x86_64 -lm
10
8
//#cgo darwin,arm64 LDFLAGS:-L${SRCDIR}/build/darwin-arm64 -lm
11
9
//#cgo windows,amd64 LDFLAGS:-L${SRCDIR}/build/windows-x86_64
You can’t perform that action at this time.
0 commit comments