-
Notifications
You must be signed in to change notification settings - Fork 6
46 lines (45 loc) · 1.01 KB
/
main.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Build dss-ecosystem
on:
push:
branches:
- master
- stable/*
pull_request:
branches:
- master
- stable/*
types:
- opened
- reopened
- synchronize
jobs:
unit:
uses: OpenMPDK/DSS/.github/workflows/build-aws.yml@master
with:
component: pytest
project-name: OpenMPDK_dss-ecosystem
secrets: inherit
lint:
uses: OpenMPDK/DSS/.github/workflows/build-aws.yml@master
with:
component: pycodestyle
project-name: OpenMPDK_dss-ecosystem
secrets: inherit
build:
strategy:
matrix:
component:
- dss-client
- datamover
uses: OpenMPDK/DSS/.github/workflows/build-aws.yml@master
with:
component: ${{ matrix.component }}
project-name: OpenMPDK_dss-ecosystem
secrets: inherit
scan:
uses: OpenMPDK/DSS/.github/workflows/build-aws.yml@master
with:
component: sonar-scanner
project-name: OpenMPDK_dss-ecosystem
secrets: inherit
needs: [unit, build]