Skip to content

Commit

Permalink
Run FastInfosetTest#fastInfosetNative 50 times
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed Jan 30, 2025
1 parent 750c2b9 commit 40d52d8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 92 deletions.
32 changes: 4 additions & 28 deletions .github/actions/build-and-run-jvm-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,35 +39,11 @@ runs:
- name: mvn -B formatter:validate install
shell: bash
run: ./mvnw -B formatter:validate install -fae -ntp
run: ./mvnw -B formatter:validate install -DskipTests -Dquarkus.build.skip -fae -ntp

# Same as the previous but only JVM tests and different default ConduitFactory
- name: QUARKUS_CXF_DEFAULT_HTTP_CONDUIT_FACTORY=URLConnectionHTTPConduitFactory mvn -B test
shell: bash
env:
QUARKUS_CXF_DEFAULT_HTTP_CONDUIT_FACTORY: URLConnectionHTTPConduitFactory
run: ./mvnw -B clean install -fae -ntp

- name: 'Upload generated Antora docs site'
uses: actions/upload-artifact@v4
with:
name: docs
path: docs/target/site

- name: Fail if there are uncommitted changes
- name: mvn -B formatter:validate install
shell: bash
run: |
[[ -z $(git status --porcelain | grep -v antora.yml) ]] || { echo 'There are uncommitted changes'; git status; git diff; exit 1; }
cd integration-tests/fastinfoset
for i in {1..50}; do echo "==== run $i"; ../../mvnw test -Dtest=FastInfosetTest#fastInfosetNative; done
- name: Tar Maven Repo
shell: bash
run: |
tar -czf ${{ runner.temp }}/maven-repo.tgz -C ~ .m2/repository
# Avoid caching our own artifacts
rm -Rf ~/.m2/repository/io/quarkiverse/cxf
- name: Persist Maven Repo
uses: actions/upload-artifact@v4
with:
name: maven-repo
path: ${{ runner.temp }}/maven-repo.tgz
retention-days: 1
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
java-version: ${{ env.JAVA_VERSION }}

native-tests:
if: false
strategy:
fail-fast: false
matrix:
Expand All @@ -51,6 +52,7 @@ jobs:
test-module-spec: ${{matrix.testModule}}

windows-tests:
if: false
name: Windows tests
needs: build-and-run-jvm-tests
runs-on: windows-latest
Expand Down
64 changes: 0 additions & 64 deletions .github/workflows/codeql.yml

This file was deleted.

0 comments on commit 40d52d8

Please sign in to comment.