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

Fixes #3847 - Setup Jakarta CDI 4.0.12 TCK for Piranha Core Profile #3848

Merged
merged 8 commits into from
Aug 28, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Fixes #3859 - Setup GitHub workflow to Core Profile TCK (#3865)
  • Loading branch information
mnriem committed Aug 28, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 48fa07cf926444bad83438e8fdb754c429a66433
21 changes: 21 additions & 0 deletions .github/workflows/tck-core-profile.yml
Original file line number Diff line number Diff line change
@@ -46,6 +46,27 @@ jobs:
run: |
cd external/tck/coreprofile/atinject
mvn -B -ntp verify
cdi:
runs-on: ${{ matrix.os }}
strategy:
matrix:
java: [ '21' ]
os: [ubuntu-latest]
steps:
- name: Checkout Sources
uses: actions/checkout@v3
- name: Set up Java ${{ matrix.java }}
uses: actions/setup-java@v3
with:
cache: 'maven'
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Setup for TCK
run: mvn -B -DskipTests=true -ntp install
- name: Run TCK
run: |
cd external/tck/coreprofile/cdi
mvn -B -ntp verify
jsonb:
runs-on: ${{ matrix.os }}
strategy:
8 changes: 8 additions & 0 deletions docs/pom.xml
Original file line number Diff line number Diff line change
@@ -19,6 +19,14 @@
<artifactId>maven-site-plugin</artifactId>
<version>3.20.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.3</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
Loading