-
Notifications
You must be signed in to change notification settings - Fork 7
47 lines (46 loc) · 1019 Bytes
/
dss-sdk.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
47
name: dss-sdk
on:
workflow_dispatch:
push:
branches:
- master
- stable/*
pull_request:
branches:
- master
- stable/*
types:
- opened
- reopened
- synchronize
jobs:
build:
strategy:
matrix:
component:
- dss-sdk-build
- dss-sdk-unit-test
uses: OpenMPDK/DSS/.github/workflows/build-aws.yml@master
with:
component: ${{ matrix.component }}
project-name: OpenMPDK_dss-sdk
compute-type-override: BUILD_GENERAL1_LARGE
secrets: inherit
lint:
strategy:
matrix:
component:
- pycodestyle
- shellcheck
uses: OpenMPDK/DSS/.github/workflows/build-aws.yml@master
with:
component: ${{ matrix.component }}
project-name: OpenMPDK_dss-sdk
secrets: inherit
scan:
uses: OpenMPDK/DSS/.github/workflows/build-aws.yml@master
with:
component: sonar-scanner
project-name: OpenMPDK_dss-sdk
secrets: inherit
needs: [build]