Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ jobs:
maven-username: ${{ secrets.MAVEN_USERNAME }}
maven-password: ${{ secrets.MAVEN_TOKEN }}

- name: Upload natives for native testing
if: matrix.platform.name == 'windows_arm64'
uses: actions/upload-artifact@v4
with:
name: natives-${{ matrix.platform.name }}
path: webrtc-jni/target/webrtc-java-*.jar
if-no-files-found: error

build-linux:
strategy:
fail-fast: false
Expand Down Expand Up @@ -126,11 +134,17 @@ jobs:
maven-password: ${{ secrets.MAVEN_TOKEN }}

test-natives:
needs: build-linux
needs: [build-windows, build-linux]
strategy:
fail-fast: false
matrix:
platform:
- name: windows_arm64
runs-on: windows-11-arm
classifier: windows-aarch64
profile: windows-aarch64
java-distribution: microsoft
java-architecture: aarch64
- name: linux_arm64
runs-on: ubuntu-22.04-arm
classifier: linux-aarch64
Expand Down
Loading