Skip to content

Do not clean after natives build #105

Do not clean after natives build

Do not clean after natives build #105

Workflow file for this run

name: "test"
on:
pull_request:
branches:
- "*"
push:
branches:
- "*"
jobs:
test-linux-jtreg:
name: "Linux run.sh"
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
jdkconf:
- JDK 8
- JDK 11
- JDK 17
- JDK 21
- JDK 25
include:
- jdkconf: JDK 8
jdkver: "8"
- jdkconf: JDK 11
jdkver: "11"
- jdkconf: JDK 17
jdkver: "17"
- jdkconf: JDK 21
jdkver: "21"
- jdkconf: JDK 25
jdkver: "25"
steps:
- uses: actions/checkout@v3
- name: "Install dependencies"
run: |
sudo apt-get update
sudo apt-get install zig || true
sudo apt-get install ibapr1*
sudo apt-get install make openssl libssl-dev gcc pkg-config ant maven
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.jdkver}}
- name: Run
run: JNI_FAIL=true RFAT_RERUNS=2 bash ./run.sh "${JAVA_HOME}"
- name: Upload results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: "linux-jtreg-jdk${{ matrix.jdkver}}"
path: "test.*.tar.gz"