Skip to content

Commit

Permalink
[AUTO] Increment version to 2.19.1-SNAPSHOT (#1071)
Browse files Browse the repository at this point in the history
* Increment version to 2.19.1-SNAPSHOT

Signed-off-by: opensearch-ci-bot <[email protected]>

* Update glibc solution

Signed-off-by: Peter Zhu <[email protected]>

---------

Signed-off-by: opensearch-ci-bot <[email protected]>
Signed-off-by: Peter Zhu <[email protected]>
Co-authored-by: opensearch-ci-bot <[email protected]>
Co-authored-by: Peter Zhu <[email protected]>
  • Loading branch information
3 people authored Feb 19, 2025
1 parent c2bebae commit 111f0db
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/draft-release-notes-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
with:
config-name: draft-release-notes-config.yml
tag: (None)
version: 2.19.0.0
version: 2.19.1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35 changes: 19 additions & 16 deletions .github/workflows/reports-scheduler-test-and-build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,20 @@ jobs:
# this image tag is subject to change as more dependencies and updates will arrive over time
image: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-version-linux }}
# need to switch to root so that github actions can install runner binary on container without permission issues.
options: --user root

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
options: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-options }}

steps:
- name: Run start commands
run: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-command }}

- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'

- name: Checkout Reports Scheduler
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: RunBackwards Compatibility Tests
run: |
Expand All @@ -59,9 +60,9 @@ jobs:
chown -R 1000:1000 `pwd`
- name: Upload Artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: reports-scheduler-linux
name: reports-scheduler-linux-${{ matrix.java }}
path: reports-scheduler-builds

windows-build:
Expand All @@ -73,12 +74,13 @@ jobs:

steps:
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'

- name: Checkout Reports Scheduler
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build with Gradle
run: |
Expand All @@ -90,9 +92,9 @@ jobs:
cp -r ./build/distributions/*.zip reports-scheduler-builds/
- name: Upload Artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: reports-scheduler-windows
name: reports-scheduler-windows-${{ matrix.java }}
path: reports-scheduler-builds

macos-build:
Expand All @@ -104,13 +106,14 @@ jobs:

steps:
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'

# reports-scheduler
- name: Checkout Reports Scheduler
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build with Gradle
run: |
Expand All @@ -122,7 +125,7 @@ jobs:
cp -r ./build/distributions/*.zip reports-scheduler-builds/
- name: Upload Artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: reports-scheduler-macos
name: reports-scheduler-macos-${{ matrix.java }}
path: reports-scheduler-builds
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
opensearch_group = "org.opensearch"

isSnapshot = "true" == System.getProperty("build.snapshot", "true")
opensearch_version = System.getProperty("opensearch.version", "2.19.0-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "2.19.1-SNAPSHOT")
buildVersionQualifier = System.getProperty("build.version_qualifier", "")
// 2.0.0-rc1-SNAPSHOT -> 2.0.0.0-rc1-SNAPSHOT
version_tokens = opensearch_version.tokenize('-')
Expand Down

0 comments on commit 111f0db

Please sign in to comment.