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

Add nightly build against langchain4j main #14

Merged
merged 1 commit into from
Nov 14, 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
46 changes: 46 additions & 0 deletions .github/workflows/build-against-langchain4j.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build against Langchain4j main

on:
schedule:
- cron: '0 2 * * *'
workflow_dispatch:

defaults:
run:
shell: bash

jobs:
build:
name: Build on ${{ matrix.os }} - ${{ matrix.java }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
java: [17, 21]
runs-on: ${{ matrix.os }}
steps:
- name: Prepare git
run: git config --global core.autocrlf false
if: startsWith(matrix.os, 'windows')

- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: 'maven'

- name: Build langchain4j
run: |
mkdir langchain4j
cd langchain4j
git clone https://github.com/langchain4j/langchain4j.git
cd langchain4j
mvn -B clean install -DskipTests

- name: Build with Maven
run: mvn -B clean install -Dno-format

- name: Build with Maven (Native)
run: mvn -B install -Dnative -Dquarkus.native.container-build -Dnative.surefire.skip
9 changes: 0 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,6 @@ jobs:
java-version: ${{ matrix.java }}
cache: 'maven'

# This task will be moved into a nightly build once we have a release.
# - name: Build langchain4j
# run: |
# mkdir langchain4j
# cd langchain4j
# git clone https://github.com/langchain4j/langchain4j.git
# cd langchain4j
# mvn -B clean install -DskipTests

- name: Build with Maven
run: mvn -B clean install -Dno-format

Expand Down