Skip to content

Commit b03da60

Browse files
Create win-10-pro.yml
1 parent 69428b6 commit b03da60

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.github/workflows/win-10-pro.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Test java Windows zip issue
2+
3+
on:
4+
push:
5+
branches:
6+
- sapMachine
7+
workflow_dispatch:
8+
9+
10+
jobs:
11+
test:
12+
runs-on: [self-hosted, win-10-pro-x64]
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
distribution: [ 'adopt', 'zulu', 'temurin', 'corretto', 'liberica', 'oracle', 'microsoft', 'semeru', 'dragonwell', 'sapmachine', graalvm]
17+
18+
steps:
19+
# - name: cache clear
20+
# run: |
21+
# mv "${{ runner.tool_cache }}" "${{ runner.tool_cache }}.old"
22+
# mkdir -p "${{ runner.tool_cache }}"
23+
24+
- name: Checkout code
25+
uses: actions/checkout@v4
26+
27+
- name: Set up Java
28+
# uses: priyagupta108/setup-java@winZip
29+
uses: actions/setup-java@main
30+
with:
31+
distribution: ${{ matrix.distribution }}
32+
java-version: '21'
33+
cache: 'gradle'
34+
35+
36+
- name: Verify Java version
37+
run: java -version

0 commit comments

Comments
 (0)