Merge pull request #4406 from chanikag/cxf #1545
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Integration tests (Windows, OpenJDK11) | |
| on: [push] | |
| jobs: | |
| tests-mediators1_2_other_sample: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Support longpaths | |
| run: git config --system core.longpaths true | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'adopt' | |
| java-version: 11 | |
| - name: Build with Maven | |
| run: mvn -B clean install -P tests-mediators1_2_other_sample --file pom.xml -fae | |
| tests-service_patches_servicesamples_dss: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Support longpaths | |
| run: git config --system core.longpaths true | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'adopt' | |
| java-version: 11 | |
| - name: Build with Maven | |
| run: mvn -B clean install -P tests-service_patches_servicesamples_dss --file pom.xml -fae | |
| tests-transport: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Support longpaths | |
| run: git config --system core.longpaths true | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'adopt' | |
| java-version: 11 | |
| - name: Build with Maven | |
| run: mvn -B clean install -P tests-transport --file pom.xml -fae | |