Skip to content

Commit 2427a10

Browse files
committed
Experimental GHA
1 parent fdece05 commit 2427a10

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.github/workflows/test.yaml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: "test"
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- "*"
7+
push:
8+
branches:
9+
- "*"
10+
11+
jobs:
12+
test-linux-jtreg:
13+
name: "Linux run.sh"
14+
runs-on: "ubuntu-latest"
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
jdkconf:
19+
- JDK 25
20+
include:
21+
- jdkconf: JDK 25
22+
jdkver: "25"
23+
osver: "10"
24+
jdkimage: "docker.io/library/eclipse-temurin:25-jdk-ubi10-minimal"
25+
steps:
26+
- uses: actions/checkout@v3
27+
- name: "Install dependencies"
28+
run: |
29+
sudo apt-get update
30+
sudo apt-get install podman
31+
- name: Versions
32+
run: |
33+
podman --version
34+
podman run --rm -it ${{matrix.jdkimage}} bash --version
35+
# - name: Run
36+
# run: JNI_FAIL=true RFAT_RERUNS=2 bash ./run.sh "${JAVA_HOME}"
37+
# - name: Upload results
38+
# if: ${{ always() }}
39+
# uses: actions/upload-artifact@v4
40+
# with:
41+
# name: "linux-jtreg-jdk${{ matrix.jdkver}}"
42+
# path: "test.*.tar.gz"
43+

0 commit comments

Comments
 (0)