Skip to content

Commit

Permalink
test: Windows IT
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Nuri <[email protected]>
  • Loading branch information
manusa committed Apr 3, 2020
1 parent d5158d5 commit ea43921
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,3 +134,34 @@ jobs:
with:
name: Test reports (OpenShift ${{ matrix.openshift }}-${{ matrix.suite }})
path: ./reports
windows:
name: Windows
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install JKube
run: mvn -f pom.xml -B -DskipTests clean install
- name: Checkout JKube Integration Tests Repository
shell: cmd
run: |
git clone %JKUBE_IT_REPOSITORY%
cd %JKUBE_IT_DIR%
git checkout "%JKUBE_IT_REVISION%"
- name: Install and Run Integration Tests
run: |
$env:JKUBE_VERSION = (mvn org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate -Dexpression='project.version' -q -DforceStdout) | Out-String
echo $env:JKUBE_VERSION
# cd $env:JKUBE_IT_DIR
# mvnw -B -PWindows clean verify -D'jkube.version'=$env:JKUBE_VERSION
- name: Consolidate reports
if: always()
run: |
mkdir reports
cp $env:JKUBE_IT_DIR\it\target\jkube-test-report.txt reports
- name: Save reports as artifact
if: always()
uses: actions/upload-artifact@master
with:
name: Test reports (Windows)
path: ./reports

0 comments on commit ea43921

Please sign in to comment.