We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf5863c commit db3fdb6Copy full SHA for db3fdb6
1 file changed
.github/workflows/integration-quarkus-langchain4j.yml
@@ -125,6 +125,13 @@ jobs:
125
# The -Dtornado flag activates the TornadoVM profile which includes gpu-llama3 module
126
mvn clean install -pl integration-tests/gpu-llama3 -am -DskipTests -Dtornado
127
128
+ # Step 4.5: Verify GPULlama3 JAR
129
+ - name: Verify GPULlama3 JAR
130
+ run: |
131
+ cd ${{ github.workspace }}/quarkus-langchain4j/integration-tests/gpu-llama3
132
+ echo "GPULlama3 JAR used:"
133
+ find target/quarkus-app/lib/main -name "gpu-llama3-*.jar" -exec basename {} \;
134
+
135
# Step 5: Start Quarkus Application and Wait for Startup
136
- name: Start Quarkus Application and Wait for Startup
137
run: |
0 commit comments