Skip to content
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
6 changes: 6 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
with:
java-version: 25
distribution: temurin
cache: gradle
- name: Spotless Check
run: ./gradlew spotlessCheck
javadoc:
Expand All @@ -31,6 +32,7 @@ jobs:
with:
java-version: 25
distribution: temurin
cache: gradle
- name: Javadoc CheckStyle
run: ./gradlew checkstyleMain
- name: Javadoc Check
Expand All @@ -50,6 +52,7 @@ jobs:
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: gradle
- name: Build and Run Tests
shell: bash
run: |
Expand Down Expand Up @@ -77,6 +80,7 @@ jobs:
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: gradle
- name: Build and Run Tests
shell: bash
run: |
Expand All @@ -97,6 +101,7 @@ jobs:
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: gradle
- name: Build and Run Tests
shell: bash
run: |
Expand All @@ -120,6 +125,7 @@ jobs:
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: gradle
- name: Build and Run Tests
shell: bash
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v4
with:
distribution: temurin # Temurin is a distribution of adoptium
java-version: 25
- uses: actions/checkout@v6
cache: gradle

- name: Load secret
uses: 1password/load-secrets-action@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-api-consistency.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ jobs:
uses: actions/checkout@v6

- name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: gradle

- name: Run API Consistency Tests
run: ./gradlew test --tests "org.opensearch.flowframework.workflow.*"
7 changes: 4 additions & 3 deletions .github/workflows/test_bwc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout Flow Framework
uses: actions/checkout@v6

- name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}

- name: Checkout Flow Framework
uses: actions/checkout@v6
cache: gradle

- name: Assemble Flow Framework
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: gradle
- name: Run tests
# switching the user, as OpenSearch cluster can only be started as root/Administrator on linux-deb/linux-rpm/windows-zip.
run: |
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
- Fix hard-coded region in Bedrock template URLs ([#1354](https://github.com/opensearch-project/flow-framework/pull/1354))
- Add missing fields to workflow steps matching ml-commons builders ([#1360](https://github.com/opensearch-project/flow-framework/pull/1360))
### Infrastructure
- Add Gradle cache to setup-java steps in GitHub Actions workflows ([#1372](https://github.com/opensearch-project/flow-framework/pull/1372))
### Documentation
### Maintenance
### Refactoring
Loading