Skip to content

Commit 5a0b554

Browse files
Enable scheduled runs and restore pull_request triggers for Quarkus-LangChain4j workflow
1 parent 9b6fb41 commit 5a0b554

1 file changed

Lines changed: 9 additions & 10 deletions

File tree

.github/workflows/integration-quarkus-langchain4j.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
name: Integration Quarkus-LangChain4j
22

33
on:
4-
# Temporarily disabled - manual trigger only
54
push:
6-
branches: [ main, ci/quarkus-langchain4j-IT ]
7-
# pull_request:
8-
# branches: [ main ]
9-
# types: [opened, synchronize, reopened]
10-
# schedule:
11-
# # Run daily at 02:30 UTC to catch dependency breakages
12-
# - cron: '30 2 * * *'
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
types: [opened, synchronize, reopened]
9+
schedule:
10+
# Run every Saturday at 02:30 UTC to catch dependency breakages
11+
- cron: '30 2 * * 6'
1312
workflow_dispatch:
1413
inputs:
1514
quarkus_langchain4j_version:
@@ -93,13 +92,13 @@ jobs:
9392
git clone --branch fix/gpu-llama3-config-registration \
9493
https://github.com/orionpapadakis/quarkus-langchain4j.git
9594
96-
# Step 3: Build Quarkus LangChain4j (optimized)
95+
# Step 3: Build Quarkus LangChain4j
9796
- name: Build Quarkus LangChain4j
9897
run: |
9998
cd ${{ github.workspace }}/quarkus-langchain4j
10099
export PATH="$TORNADOVM_HOME/bin:$JAVA_HOME/bin:$PATH"
101100
102-
# Use reactor to build GPULlama3 integration test + dependencies
101+
# Use reactor to build *only *GPULlama3 integration test + dependencies
103102
# This recompiles everything with the same Java version, avoiding compatibility issues
104103
# The -Dtornado flag activates the TornadoVM profile which includes gpu-llama3 module
105104
mvn clean install -pl integration-tests/gpu-llama3 -am -DskipTests -Dtornado

0 commit comments

Comments
 (0)