forked from opensearch-project/alerting
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Creates the test workflow, builds the plugin for any PR against master or a release branch. If the change builds successfully upload the zip file to the PR for anyone to test out.
- Loading branch information
1 parent
20a8f5e
commit fc59367
Showing
1 changed file
with
38 additions
and
0 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,38 @@ | ||
name: Test Workflow | ||
# This workflow is triggered on pull requests to master or a opendistro release branch | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
- opendistro-* | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
java: [12] | ||
# Job name | ||
name: Build Alerting with JDK ${{ matrix.java }} | ||
# This job runs on Linux | ||
runs-on: ubuntu-latest | ||
steps: | ||
# This step uses the checkout Github action: https://github.com/actions/checkout | ||
- name: Checkout Branch | ||
uses: actions/checkout@v1 | ||
# This step uses the setup-java Github action: https://github.com/actions/setup-java | ||
- name: Set Up JDK ${{ matrix.java }} | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
- name: Build with Gradle | ||
run: ./gradlew build | ||
- name: Create Artifact Path | ||
run: | | ||
mkdir -p alerting-artifacts | ||
cp ./alerting/build/distributions/*.zip alerting-artifacts | ||
# This step uses the upload-artifact Github action: https://github.com/actions/upload-artifact | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: alerting-plugin | ||
path: alerting-artifacts |