There was an error while loading. Please reload this page.
1 parent f2c534a commit 8871a9dCopy full SHA for 8871a9d
1 file changed
.github/workflows/build-jvm-linux.yml
@@ -20,15 +20,23 @@ jobs:
20
- uses: ./.github/actions/setup-and-cache-rust
21
with:
22
target: "x86_64-unknown-linux-gnu"
23
- - name: build jvm-linux
24
- run: |
25
- make jvm-linux
+ - run: make jvm-linux
26
- name: upload dynamic library
27
uses: actions/upload-artifact@v4
28
29
name: jvm-linux-so-file-${{ github.run_id }}
30
path: target/x86_64-unknown-linux-gnu/release/*.so
31
retention-days: 1
+
+ generate-jvm-bindings:
32
+ if: github.repository == 'wireapp/core-crypto'
33
+ runs-on: ubuntu-latest
34
+ steps:
35
+ - uses: actions/checkout@v5
36
+ - uses: ./.github/actions/setup-and-cache-rust
37
+ with:
38
+ target: "x86_64-unknown-linux-gnu"
39
+ - run: make bindings-kotlin-jvm
40
- name: upload bindings
41
42
0 commit comments