-
Notifications
You must be signed in to change notification settings - Fork 5
132 lines (125 loc) · 4.01 KB
/
bindings.yml
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
name: Build bindings
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
CARGO_NET_GIT_FETCH_WITH_CLI: true
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
jobs:
build-android:
if: github.repository == 'wireapp/core-crypto'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: "17"
distribution: "adopt"
- name: Gradle Setup
uses: gradle/actions/setup-gradle@v4
- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@v4
- name: "Setup rust"
uses: actions-rust-lang/setup-rust-toolchain@v1 # this implicitly caches Rust tools and build artifacts
with:
rustflags: ''
target: "armv7-linux-androideabi,aarch64-linux-android,x86_64-linux-android,i686-linux-android"
- name: Setup cargo-make
uses: davidB/rust-cargo-make@v1
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: Install NDK 25
run: echo "y" | sdkmanager --install "ndk;25.2.9519653"
- name: Build Android package
env:
ANDROID_NDK_HOME: /usr/local/lib/android/sdk/ndk/25.2.9519653
run: |
cd crypto-ffi
cargo make android
- name: Build package
run: |
cd crypto-ffi/bindings
./gradlew android:build -x lint -x lintRelease
build-and-test-jvm:
if: github.repository == 'wireapp/core-crypto'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: "17"
distribution: "adopt"
- name: Gradle Setup
uses: gradle/actions/setup-gradle@v4
- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@v4
- name: "Setup rust"
uses: actions-rust-lang/setup-rust-toolchain@v1 # this implicitly caches Rust tools and build artifacts
- name: Setup cargo-make
uses: davidB/rust-cargo-make@v1
- name: Build JVM rust binaries
run: |
cd crypto-ffi
cargo make jvm-linux
- name: Build and test JVM package
run: |
cd crypto-ffi/bindings
./gradlew jvm:build -x lint -x lintRelease
build-swift:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1 # this implicitly caches Rust tools and build artifacts
with:
rustflags: ''
target: "aarch64-apple-ios,x86_64-apple-ios,aarch64-apple-ios-sim"
- name: Setup cargo-make
uses: davidB/rust-cargo-make@v1
- name: Build Swift package
run: |
cd crypto-ffi
cargo make ios-create-xcframework
build-and-test-wasm:
runs-on: ubuntu-latest
env:
# ensures we have same flags as when publishing
RUSTFLAGS: "-D warnings -W unreachable-pub"
steps:
- uses: actions/checkout@v4
- uses: browser-actions/setup-chrome@latest
id: setup-chrome
with:
chrome-version: stable
- uses: actions-rust-lang/setup-rust-toolchain@v1 # this implicitly caches Rust tools and build artifacts
with:
rustflags: ''
target: wasm32-unknown-unknown
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Setup cargo-make
uses: davidB/rust-cargo-make@v1
- name: Install wasm-pack
uses: jetli/[email protected]
with:
version: "latest"
- name: Build & test WASM / JS package
run: |
cd crypto-ffi
npm install
bun install
cargo make wasm
bun test --bail
cd bindings/js
bun eslint . --max-warnings=0