Skip to content

Commit

Permalink
Delete workflow
Browse files Browse the repository at this point in the history
Update workflow

Update workflow

Update workflow

Update workflow

Update workflow

Refactor testcase

Add arg under the surfire plugin

Update arg
  • Loading branch information
kalaiyarasiganeshalingam committed Nov 13, 2024
1 parent f1a5a9f commit 87322b0
Show file tree
Hide file tree
Showing 9 changed files with 124 additions and 212 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/jdk-17-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: check java version
run: echo "JAVA_VERSION=$(java -version)"
- name: Build in jdk11
run: mvn -B clean install -DskipTests --file pom.xml
run: mvn clean install -DskipTests --file pom.xml
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
Expand All @@ -48,4 +48,4 @@ jobs:
- name: Print segment
run: echo "Running build for segment ${{ matrix.profile }}"
- name: JDK 17 Tests
run: mvn -B clean install --file integration/pom.xml -P ${{ matrix.profile }} -fae
run: mvn clean install --file integration/pom.xml -P ${{ matrix.profile }} -fae
10 changes: 7 additions & 3 deletions .github/workflows/jdk-21-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Integration tests (Ubuntu, OpenJDK17)
name: Integration tests (Ubuntu, OpenJDK21)

on: [push, pull_request]

Expand Down Expand Up @@ -34,8 +34,12 @@ jobs:
run: echo "MAVEN_VERSION=$(mvn -v)"
- name: check java version
run: echo "JAVA_VERSION=$(java -version)"
- name: Set JAVA_TOOL_OPTIONS
run: |
NEW_JAVA_TOOL_OPTIONS="${{ env.JAVA_TOOL_OPTIONS }} -Djdk.util.zip.disableZip64ExtraFieldValidation=true -Djdk.nio.zipfs.allowDotZipEntry=true --add-opens=java.base/java.net=ALL-UNNAMED"
echo "JAVA_TOOL_OPTIONS=$NEW_JAVA_TOOL_OPTIONS" >> $GITHUB_ENV
- name: Build in jdk11
run: mvn -B clean install -DskipTests --file pom.xml
run: mvn clean install -DskipTests --file pom.xml
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
Expand All @@ -48,4 +52,4 @@ jobs:
- name: Print segment
run: echo "Running build for segment ${{ matrix.profile }}"
- name: JDK 21 Tests
run: mvn -B clean install --file integration/pom.xml -P ${{ matrix.profile }} -fae
run: mvn clean install --file integration/pom.xml -P ${{ matrix.profile }} -fae
67 changes: 0 additions & 67 deletions .github/workflows/main.yml

This file was deleted.

55 changes: 0 additions & 55 deletions .github/workflows/maven.yml

This file was deleted.

4 changes: 1 addition & 3 deletions .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,15 @@ jobs:
- name: Build with Maven
run: mvn -B clean install -P smoke-tests --file pom.xml -fae
windows:

runs-on: windows-latest

steps:
- name: Configure Git to support long paths
run: git config --global core.longpaths true
- name: Verify Git configuration for long paths
run: git config --global core.longpaths
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: joschi/setup-jdk@v2
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '11.0.12+7'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/windows-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Integration tests (Windows, OpenJDK8)
name: Integration tests (Windows, OpenJDK11)

on: [push]

Expand All @@ -12,7 +12,7 @@ jobs:
run: git config --system core.longpaths true
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: joschi/setup-jdk@v2
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11
Expand All @@ -28,7 +28,7 @@ jobs:
run: git config --system core.longpaths true
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: joschi/setup-jdk@v2
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11
Expand All @@ -44,7 +44,7 @@ jobs:
run: git config --system core.longpaths true
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: joschi/setup-jdk@v2
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@
<version>2.22.2</version>
<configuration>
<!--<argLine>-Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5006</argLine>-->
<argLine>-Xmx1024m</argLine>
<argLine>
-Xmx1024m
--add-opens java.base/java.lang=ALL-UNNAMED
--add-opens java.base/java.lang.reflect=ALL-UNNAMED
--add-opens java.base/jdk.internal.reflect=ALL-UNNAMED
</argLine>
<disableXmlReport>false</disableXmlReport>
<parallel>false</parallel>
<suiteXmlFiles>
Expand Down
Loading

0 comments on commit 87322b0

Please sign in to comment.