forked from vmware-archive/flowgate
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (28 loc) · 759 Bytes
/
openmanage.yml
File metadata and controls
32 lines (28 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: test openmanage
on: [pull_request]
jobs:
build:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: test openmanage
run: |
export FLOWGATEPWD=$PWD
cd $FLOWGATEPWD/flowgate-common
sudo mvn clean install
cd $FLOWGATEPWD/common-restclient
sudo mvn clean install
cd $FLOWGATEPWD/worker-jobs
sudo mvn clean install
cd $FLOWGATEPWD/openmanage
sudo mvn clean test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
flags: openmanage
name: codecov-openmanage
fail_ci_if_error: true