Skip to content
This repository was archived by the owner on Jul 2, 2022. It is now read-only.

Commit

Permalink
ignored Integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
KushnirykOleh committed May 27, 2022
1 parent db68616 commit 39ebc85
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,25 +119,27 @@ jobs:
path: |
target/*.jar
integration-tests:
name: Java ${{ matrix.java }}
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
java: [8, 11, 17]
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: Test With Maven
run: mvn clean verify --file pom.xml
# Don't run IT tests in CI/CD until we have cloud instance and credentials configured.
# integration-tests:
# name: Java ${{ matrix.java }}
# runs-on: ubuntu-latest
# needs: build
# strategy:
# matrix:
# java: [8, 11, 17]
# steps:
# - uses: actions/checkout@v2
# - name: Set up JDK ${{ matrix.java }}
# uses: actions/setup-java@v2
# with:
# java-version: ${{ matrix.java }}
# distribution: 'adopt'
# - name: Test With Maven
# run: mvn clean verify --file pom.xml

draft-release:
needs: [ setup, build, integration-tests ]
# needs: [ setup, build, integration-tests ]
needs: [ setup, build ]
name: Draft Release
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 39ebc85

Please sign in to comment.