-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt to make CI run Pinecone tests more reliably
- Loading branch information
Showing
4 changed files
with
106 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Build nightly | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
workflow_dispatch: | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
build: | ||
name: Build on ${{ matrix.os }} - ${{ matrix.java }} | ||
strategy: | ||
# PineconeEmbeddingStoreTest uses a single shared index, we can't run multiple CI runs on it at once | ||
max-parallel: 1 | ||
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 with Maven | ||
run: mvn -B clean install -Dno-format | ||
env: | ||
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }} | ||
PINECONE_ENVIRONMENT: ${{ secrets.PINECONE_ENVIRONMENT }} | ||
PINECONE_INDEX_NAME: ${{ secrets.PINECONE_INDEX_NAME }} | ||
PINECONE_PROJECT_ID: ${{ secrets.PINECONE_PROJECT_ID }} | ||
|
||
- name: Build with Maven (Native) | ||
run: mvn -B install -Dnative -Dquarkus.native.container-build -Dnative.surefire.skip | ||
env: | ||
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }} | ||
PINECONE_ENVIRONMENT: ${{ secrets.PINECONE_ENVIRONMENT }} | ||
PINECONE_INDEX_NAME: ${{ secrets.PINECONE_INDEX_NAME }} | ||
PINECONE_PROJECT_ID: ${{ secrets.PINECONE_PROJECT_ID }} |
13 changes: 1 addition & 12 deletions
13
.github/workflows/build.yml → .github/workflows/build-pull-request.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Build (on push) | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
paths-ignore: | ||
- '.gitignore' | ||
- 'CODEOWNERS' | ||
- 'LICENSE' | ||
- '*.md' | ||
- '*.adoc' | ||
- '*.txt' | ||
- '.all-contributorsrc' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
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 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters