Skip to content

Commit

Permalink
windows CI for AD
Browse files Browse the repository at this point in the history
  • Loading branch information
amitgalitz committed Oct 27, 2022
1 parent 7a05826 commit e8975bb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,28 @@ on:
- "*"

jobs:
Build-ad-windows:
strategy:
matrix:
java: [ 11, 17 ]
name: Build and Test Anomaly Detection Plugin on Windows
runs-on: windows-latest
steps:
- name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
# checkout Anomaly Detection
- name: Checkout Anomaly Detection
uses: actions/checkout@v2

- name: Build and Run Tests
run: |
./gradlew.bat build
- name: Publish to Maven Local
run: |
./gradlew publishToMavenLocal
Build-ad:
strategy:
matrix:
Expand Down

0 comments on commit e8975bb

Please sign in to comment.