File tree Expand file tree Collapse file tree 6 files changed +15
-20
lines changed Expand file tree Collapse file tree 6 files changed +15
-20
lines changed Original file line number Diff line number Diff line change @@ -124,19 +124,15 @@ jobs:
124124 run : |
125125 ./mvnw -B clean install -DskipTests -Dno-format -ntp -f model-providers/jlama/pom.xml
126126
127- - name : Run tests of ${{ matrix.module }} with JDK ${{ matrix.java }}
128- run : |
129- cd ${{ matrix.module }} && ../mvnw -B verify -Dci=true -Dno-format -ntp
130-
131127 # Build Llama3.java if JDK >= 22. See https://x.com/tjake/status/1849141171475399083?t=EpgVJCPLC17fCXio0FvnhA&s=19 for the reason
132128 - name : Build Llama3-java extension
133129 if : ${{ matrix.java >= 22 }}
134130 run : |
135- ./mvnw -B clean install -DskipTests -Dno-format -ntp -f model-providers/llama3-java/pom.xml
131+ ./mvnw -B clean install -DskipTests -Dno-format -ntp -f model-providers/llama3-java/pom.xml
136132
137133 - name : Run tests of ${{ matrix.module }} with JDK ${{ matrix.java }}
138134 run : |
139- cd ${{ matrix.module }} && ../mvnw -B verify -Dci=true -Dno-format -ntp
135+ cd ${{ matrix.module }} && ../mvnw -B verify -Dci=true -Dno-format -ntp
140136
141137
142138 native-tests :
Original file line number Diff line number Diff line change 134134 <quarkus .package.type>native</quarkus .package.type>
135135 </properties >
136136 </profile >
137- <profile >
138- <id >release</id >
139- <activation >
140- <property >
141- <name >prepareRelease</name >
142- </property >
143- </activation >
144- <properties >
145- <!-- when a release is performed, we don't want to spend time downloading the models -->
146- <quarkus .langchain4j.jlama.include-models-in-artifact>false</quarkus .langchain4j.jlama.include-models-in-artifact>
147- </properties >
148- </profile >
149137 </profiles >
150138</project >
Original file line number Diff line number Diff line change 1+ quarkus.langchain4j.jlama.include-models-in-artifact =false
Original file line number Diff line number Diff line change 66 <artifactId >quarkus-langchain4j-integration-tests-parent</artifactId >
77 <version >999-SNAPSHOT</version >
88 </parent >
9- <artifactId >quarkus-langchain4j-integration-test-jlama </artifactId >
10- <name >Quarkus LangChain4j - Integration Tests - Jlama </name >
9+ <artifactId >quarkus-langchain4j-integration-test-llama3-java </artifactId >
10+ <name >Quarkus LangChain4j - Integration Tests - Llama3 Java </name >
1111 <properties >
1212 <skipITs >true</skipITs >
1313 <maven .compiler.release>21</maven .compiler.release>
Original file line number Diff line number Diff line change 1+ quarkus.langchain4j.llama3.include-models-in-artifact =false
Original file line number Diff line number Diff line change 3838 <module >jlama</module >
3939 </modules >
4040 </profile >
41+ <profile >
42+ <id >jdk22-plus</id >
43+ <activation >
44+ <jdk >[22,)</jdk >
45+ </activation >
46+ <modules >
47+ <module >llama3-java</module >
48+ </modules >
49+ </profile >
4150 </profiles >
4251</project >
You can’t perform that action at this time.
0 commit comments