-
Notifications
You must be signed in to change notification settings - Fork 10
134 lines (110 loc) · 3.45 KB
/
Copy pathkos-go.yaml
File metadata and controls
134 lines (110 loc) · 3.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
name: KOS-Go Checks
on:
push:
paths:
- 'packages/kos-go/kos_mobile/**'
branches:
- develop
paths-ignore:
- '**/*.md'
- '.gitignore'
- '.github/**'
pull_request:
branches:
- develop
jobs:
build-go-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: RustUp
uses: klever-io/kos-rs/.github/actions/rustup@develop
with:
with_cache: true
- name: Build Linux Go bindings
run: make build-go
- name: Copy .so to Go package
run: |
mkdir -p packages/kos-go/kos_mobile/lib/linux-amd64
cp target/release/libkos_mobile.so packages/kos-go/kos_mobile/lib/linux-amd64/
- name: Commit and push changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Update Linux Go bindings library"
file_pattern: "packages/kos-go/kos_mobile/lib/linux-amd64/libkos_mobile.so"
- name: Run Go tests
run: |
cd packages/kos-go
make test
build-go-linux-musl:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: RustUp
uses: klever-io/kos-rs/.github/actions/rustup@develop
with:
with_cache: true
- name: Build Linux Go bindings
run:
rustup target add x86_64-unknown-linux-musl && make build-go-musl
- name: Copy .so to Go package
run: |
mkdir -p packages/kos-go/kos_mobile/lib/linux-amd64
cp target/x86_64-unknown-linux-musl/release/libkos_mobile.so packages/kos-go/kos_mobile/lib/linux-musl-amd64/
- name: Commit and push changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Update Linux Go bindings library"
file_pattern: "packages/kos-go/kos_mobile/lib/linux-musl/amd64/libkos_mobile.so"
- name: Run Go tests
run: |
cd packages/kos-go
make test
build-go-mac:
runs-on: [ "macos-14" ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install Rust toolchain
shell: bash
run: |
set -e
rustup component add --toolchain stable rustfmt clippy
rustup default stable
- name: Setup protobuf
run: brew install protobuf
- name: Build Mac Go bindings
run: make build-go
- name: Copy dylib to Go package
run: |
mkdir -p packages/kos-go/kos_mobile/lib/darwin-aarch64
cp target/release/libkos_mobile.dylib packages/kos-go/kos_mobile/lib/darwin-aarch64/
- name: Commit and push changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Update macOS Go bindings library"
file_pattern: "packages/kos-go/kos_mobile/lib/darwin-aarch64/libkos_mobile.dylib"
- name: Run Go tests
run: |
cd packages/kos-go
make test