Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Linux arm64 test runner #33

Closed
wants to merge 1 commit into from
Closed
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
29 changes: 26 additions & 3 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
name: macos-test-results
path: ./**/build/reports/tests

linux-tests:
linux-x64-tests:
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
name: Run Linux tests
name: Run Linux x64 tests
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -59,7 +59,30 @@ jobs:
uses: actions/upload-artifact@v4
if: failure()
with:
name: linux-test-results
name: linux-x64-test-results
path: ./**/build/reports/tests

linux-arm-tests:
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
name: Run Linux arm64 tests
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Gradle Wrapper Validation
uses: gradle/actions/wrapper-validation@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 21
- name: Run tests
run: ./gradlew check
- name: Upload test results
uses: actions/upload-artifact@v4
if: failure()
with:
name: linux-arm-test-results
path: ./**/build/reports/tests

windows-tests:
Expand Down
Loading