forked from ARK-Builders/ark-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(CI): consolidate Java bindings workflow into build.yml
Signed-off-by: Tarek <[email protected]>
- Loading branch information
1 parent
94c2d5b
commit b416a24
Showing
2 changed files
with
38 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,3 +59,41 @@ jobs: | |
with: | ||
name: release-build-${{ matrix.os }} | ||
path: target/release/ | ||
|
||
java-bindings: | ||
name: Java Bindings | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-14] | ||
needs: build-and-test | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Download Build Artifacts | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: release-build-${{ matrix.os }} | ||
path: ./release | ||
|
||
- name: Install JDK | ||
uses: actions/[email protected] | ||
with: | ||
distribution: "temurin" | ||
java-version: "22" | ||
|
||
- name: Set up Gradle | ||
uses: gradle/actions/setup-gradle@v3 | ||
|
||
- name: Set up Android SDK | ||
uses: android-actions/setup-android@v3 | ||
|
||
- name: Set up Android NDK | ||
uses: nttld/setup-ndk@v1 | ||
with: | ||
link-to-sdk: true | ||
ndk-version: r28-beta2 | ||
|
||
- name: Run Java Tests | ||
run: gradle test | ||
working-directory: ./java |
This file was deleted.
Oops, something went wrong.