@@ -12,39 +12,39 @@ jobs:
12
12
runs-on : [self-hosted, win-10-pro-x64]
13
13
strategy :
14
14
fail-fast : false
15
- matrix :
16
- distribution : [ 'adopt', 'zulu', 'temurin', 'corretto', 'liberica', 'oracle', 'microsoft', 'semeru', 'dragonwell', 'sapmachine', graalvm]
17
- build-system : ['maven', 'gradle', 'sbt']
15
+ # matrix:
16
+ # distribution: [ 'adopt', 'zulu', 'temurin', 'corretto', 'liberica', 'oracle', 'microsoft', 'semeru', 'dragonwell', 'sapmachine', graalvm]
17
+ # build-system: ['maven', 'gradle', 'sbt']
18
18
steps :
19
- # - name: cache clear
20
- # run: |
21
- # mv "${{ runner.tool_cache }}" "${{ runner.tool_cache }}.old"
22
- # mkdir -p "${{ runner.tool_cache }}"
19
+ - name : cache clear
20
+ run : |
21
+ mv "${{ runner.tool_cache }}" "${{ runner.tool_cache }}.old"
22
+ mkdir -p "${{ runner.tool_cache }}"
23
23
24
- - name : Checkout code
25
- uses : actions/checkout@v4
24
+ # - name: Checkout code
25
+ # uses: actions/checkout@v4
26
26
27
- - name : Set up Java
28
- uses : priyagupta108/setup-java@fix-windows-archive-extraction
29
- # uses: actions/setup-java@main
30
- with :
31
- distribution : ${{ matrix.distribution }}
32
- java-version : ' 21'
33
- cache : ${{ matrix.build-system }}
27
+ # - name: Set up Java
28
+ # uses: priyagupta108/setup-java@fix-windows-archive-extraction
29
+ # # uses: actions/setup-java@main
30
+ # with:
31
+ # distribution: ${{ matrix.distribution }}
32
+ # java-version: '21'
33
+ # cache: ${{ matrix.build-system }}
34
34
35
35
36
- - name : Build with Maven
37
- if : matrix.build-system == 'maven'
38
- run : mvn -B package --file pom.xml
36
+ # - name: Build with Maven
37
+ # if: matrix.build-system == 'maven'
38
+ # run: mvn -B package --file pom.xml
39
39
40
- - name : Build with Gradle
41
- if : matrix.build-system == 'gradle'
42
- run : ./gradlew build --no-daemon
40
+ # - name: Build with Gradle
41
+ # if: matrix.build-system == 'gradle'
42
+ # run: ./gradlew build --no-daemon
43
43
44
- - name : Build with SBT
45
- if : matrix.build-system == 'sbt'
46
- run : sbt package
44
+ # - name: Build with SBT
45
+ # if: matrix.build-system == 'sbt'
46
+ # run: sbt package
47
47
48
- - name : Verify Java version
49
- run : java -version
48
+ # - name: Verify Java version
49
+ # run: java -version
50
50
0 commit comments