-
Notifications
You must be signed in to change notification settings - Fork 73
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
update the AD settings for opensearch. #47
Changes from all commits
7996ed5
2077548
dfbbea6
9e398fd
eb4b0ab
6e5c9e9
8fec893
40b4d99
45ffd32
5d368a6
4325929
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,37 +33,37 @@ jobs: | |
with: | ||
repository: 'opensearch-project/OpenSearch' | ||
path: OpenSearch | ||
ref: 'main' | ||
ref: '1.x' | ||
- name: Build OpenSearch | ||
working-directory: ./OpenSearch | ||
run: ./gradlew publishToMavenLocal -Dbuild.version_qualifier=beta1 -Dbuild.snapshot=false | ||
run: ./gradlew publishToMavenLocal -Dbuild.version_qualifier=rc1 -Dbuild.snapshot=false | ||
|
||
# dependencies: common-utils | ||
- name: Checkout common-utils | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: '1.0.0-beta1' | ||
ref: 'main' # TODO: update to the right branch name once it's ready. e.g. 1.x | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should add instructions for our branching strategy for plugins in the plugins repo. @dblock There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please do. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
repository: 'opensearch-project/common-utils' | ||
path: common-utils | ||
- name: Build common-utils | ||
working-directory: ./common-utils | ||
run: ./gradlew publishToMavenLocal -Dopensearch.version=1.0.0-beta1 | ||
run: ./gradlew publishToMavenLocal -Dopensearch.version=1.0.0-rc1 | ||
|
||
# dependencies: job-scheduler | ||
- name: Checkout job-scheduler | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: '1.0.0-beta1' | ||
ref: 'main' # TODO: update to the right branch name once it's ready. e.g. 1.x | ||
repository: 'opensearch-project/job-scheduler' | ||
path: job-scheduler | ||
|
||
- name: Build job-scheduler | ||
working-directory: ./job-scheduler | ||
run: ./gradlew publishToMavenLocal -Dopensearch.version=1.0.0-beta1 -Dbuild.snapshot=false | ||
run: ./gradlew publishToMavenLocal -Dopensearch.version=1.0.0-rc1 -Dbuild.snapshot=false | ||
- name: Assemble job-scheduler | ||
working-directory: ./job-scheduler | ||
run: | | ||
./gradlew assemble -Dopensearch.version=1.0.0-beta1 -Dbuild.snapshot=false | ||
./gradlew assemble -Dopensearch.version=1.0.0-rc1 -Dbuild.snapshot=false | ||
echo "Creating ../src/test/resources/job-scheduler ..." | ||
mkdir -p ../src/test/resources/job-scheduler | ||
pwd | ||
|
@@ -75,11 +75,11 @@ jobs: | |
|
||
- name: Build and Run Tests | ||
run: | | ||
./gradlew build -Dopensearch.version=1.0.0-beta1 | ||
./gradlew build -Dopensearch.version=1.0.0-rc1 | ||
|
||
- name: Publish to Maven Local | ||
run: | | ||
./gradlew publishToMavenLocal -Dopensearch.version=1.0.0-beta1 | ||
./gradlew publishToMavenLocal -Dopensearch.version=1.0.0-rc1 | ||
|
||
- name: Upload Coverage Report | ||
uses: codecov/codecov-action@v1 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yay!