Skip to content

Use latest sonar-scanner and build-wrapper on runtime #270

Use latest sonar-scanner and build-wrapper on runtime

Use latest sonar-scanner and build-wrapper on runtime #270

Workflow file for this run

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@32e2895a71f6387a65435388406c414c68086216
with:
component: sonar-scanner
project-name: OpenMPDK_dss-ecosystem
ext_image: sonarsource/sonar-scanner-cli:latest
secrets: inherit
needs: [unit, build]