Skip to content

Commit

Permalink
Fixed Java-version-check-script to support both Windows and Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdeback committed May 24, 2024
1 parent b0069f0 commit 4190391
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/CICD_Main_Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
browser: [ chrome ]
profile: [ Localtests ]
environment: [ DevVer ]
os: [Windows, OPENSUSE2]
os: [Windows]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Upload test results
uses: actions/upload-artifact@v4
with:
name: DevVer test results ${{ matrix.browser }} - ${{ github.run_id }}
name: DevVer test results ${{ matrix.os }} - ${{ matrix.browser }} - ${{ github.run_id }}
path: target/surefire-reports/

DevInt:
Expand All @@ -122,6 +122,7 @@ jobs:
browser: [ chrome, firefox ]
profile: [ Localtests ]
environment: [ DevInt ]
os: [Windows, OPENSUSE2, OPENSUSE]
steps:
- name: Build & Test DevInt with Maven
run: mvn -B package --file pom.xml -Denvironment=${{matrix.environment}} -Dbrowser=${{ matrix.browser }} -P ${{ matrix.profile}}
Expand Down Expand Up @@ -152,7 +153,7 @@ jobs:
- name: Upload test results
uses: actions/upload-artifact@v4
with:
name: SIT test results ${{ matrix.browser }} - ${{ github.run_id }}
name: SIT test results Browserstack - ${{ github.run_id }}
path: target/surefire-reports/

Production:
Expand Down

0 comments on commit 4190391

Please sign in to comment.