Skip to content

Commit

Permalink
Merge pull request #847 from gtroitsk/quarkus-helm-enable-ci-on-snapshot
Browse files Browse the repository at this point in the history
Enable quarkus-helm module execution on Quarkus snapshot in CI pipelines
  • Loading branch information
michalvavrik authored Aug 1, 2023
2 parents f0ab7a7 + 36449bb commit df3ef48
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,8 @@ jobs:
chmod +x ./quarkus-dev-cli
./quarkus-dev-cli version
- name: Build
# TODO: Remove quarkus-helm module exclusion when Quarkus helm extension bumps to 1.0.9
run: |
mvn -B -fae -s .github/mvn-settings.xml clean install -Pframework,examples,extensions,coverage -Dvalidate-format -Drun-cli-tests -Dts.container.registry-url=${{ secrets.CI_REGISTRY }} -Dts.quarkus.cli.cmd="${PWD}/quarkus-dev-cli" -Dquarkus.platform.version="${{ matrix.quarkus-version }}" -pl '!examples/quarkus-helm'
mvn -B -fae -s .github/mvn-settings.xml clean install -Pframework,examples,extensions,coverage -Dvalidate-format -Drun-cli-tests -Dts.container.registry-url=${{ secrets.CI_REGISTRY }} -Dts.quarkus.cli.cmd="${PWD}/quarkus-dev-cli" -Dquarkus.platform.version="${{ matrix.quarkus-version }}"
- name: Generate Jacoco Report
run: |
cd coverage-report
Expand Down Expand Up @@ -292,9 +291,8 @@ jobs:
run: tar -xzf maven-repo.tgz -C ~
- name: Build in JVM mode
shell: bash
# TODO: Remove quarkus-helm module exclusion when Quarkus helm extension bumps to 1.0.9
run: |
mvn -B -fae -s .github/mvn-settings.xml clean install -Pframework,examples -Dquarkus.platform.version="${{ matrix.quarkus-version }}" -pl '!examples/quarkus-helm'
mvn -B -fae -s .github/mvn-settings.xml clean install -Pframework,examples -Dquarkus.platform.version="${{ matrix.quarkus-version }}"
- name: Zip Artifacts
shell: bash
if: failure()
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,8 @@ jobs:
chmod +x ./quarkus-dev-cli
./quarkus-dev-cli version
- name: Build in JVM mode
# TODO: Remove quarkus-helm module exclusion when Quarkus helm extension bumps to 1.0.9
run: |
mvn -B -fae -s .github/mvn-settings.xml clean install -Pframework,examples,extensions -Drun-cli-tests -Dts.quarkus.cli.cmd="${PWD}/quarkus-dev-cli" -Dquarkus.platform.version="${{ matrix.quarkus-version }}" -pl '!examples/quarkus-helm'
mvn -B -fae -s .github/mvn-settings.xml clean install -Pframework,examples,extensions -Drun-cli-tests -Dts.quarkus.cli.cmd="${PWD}/quarkus-dev-cli" -Dquarkus.platform.version="${{ matrix.quarkus-version }}"
- name: Zip Artifacts
run: |
zip -R artifacts-latest-linux-jvm${{ matrix.java }}.zip '*-reports/*'
Expand Down Expand Up @@ -195,9 +194,8 @@ jobs:
run: tar -xzf maven-repo.tgz -C ~
- name: Build in JVM mode
shell: bash
# TODO: Remove quarkus-helm module exclusion when Quarkus helm extension bumps to 1.0.9
run: |
mvn -B -fae -s .github/mvn-settings.xml clean install -Pframework,examples -Dquarkus.platform.version="${{ matrix.quarkus-version }}" -pl '!examples/quarkus-helm'
mvn -B -fae -s .github/mvn-settings.xml clean install -Pframework,examples -Dquarkus.platform.version="${{ matrix.quarkus-version }}"
- name: Zip Artifacts
shell: bash
if: failure()
Expand Down

0 comments on commit df3ef48

Please sign in to comment.