Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix minor issues with Virtual Threads CI #35441

Merged
merged 1 commit into from
Aug 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-actions-incremental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ jobs:
quarkus-quickstarts/LICENSE
retention-days: 2
virtual-thread-native-tests:
name: Virtual Thread Support Tests Native - ${{matrix.category}}
name: Native Tests - Virtual Thread - ${{matrix.category}}
runs-on: ${{matrix.os-name}}
needs: [build-jdk11, calculate-test-jobs]
# Skip main in forks
Expand Down Expand Up @@ -855,7 +855,7 @@ jobs:
build-report:
runs-on: ubuntu-latest
name: Build report
needs: [build-jdk11,jvm-tests,maven-tests,gradle-tests,devtools-tests,quickstarts-tests,tcks-test,native-tests]
needs: [build-jdk11,jvm-tests,maven-tests,gradle-tests,devtools-tests,quickstarts-tests,tcks-test,native-tests,virtual-thread-native-tests]
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the important part.

if: always() && github.repository != 'quarkusio/quarkus'
steps:
- uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/virtual-threads/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>quarkus-virtual-threads-integration-tests-parent</artifactId>
<name>Quarkus - Virtual Threads Integration Tests</name>
<name>Quarkus - Integration Tests - Virtual Threads</name>

<packaging>pom</packaging>

Expand Down