mirror of
https://github.com/Doctorado-ML/benchmark.git
synced 2025-08-15 23:45:54 +00:00
Add sonar build github action
This commit is contained in:
32
.github/workflows/build.yml
vendored
Normal file
32
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
name: Build
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Get project version
|
||||||
|
id: step_one
|
||||||
|
run: |
|
||||||
|
version=$(git describe --tags --abbrev=0)
|
||||||
|
echo "project_version=$version" >> $GITHUB_ENV
|
||||||
|
- uses: sonarsource/sonarqube-scan-action@master
|
||||||
|
env:
|
||||||
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
||||||
|
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
||||||
|
with:
|
||||||
|
args: >
|
||||||
|
-Dsonar.projectVersion=${{ env.project_version }}
|
||||||
|
-Dsonar.python.version=3.10
|
||||||
|
# If you wish to fail your job when the Quality Gate is red, uncomment the
|
||||||
|
# following lines. This would typically be used to fail a deployment.
|
||||||
|
- uses: sonarsource/sonarqube-quality-gate-action@master
|
||||||
|
timeout-minutes: 5
|
||||||
|
env:
|
||||||
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
@@ -1,6 +1,9 @@
|
|||||||
[](https://github.com/Doctorado-ML/benchmark/actions/workflows/main.yml)
|
[](https://github.com/Doctorado-ML/benchmark/actions/workflows/main.yml)
|
||||||
[](https://codecov.io/gh/Doctorado-ML/benchmark)
|
[](https://codecov.io/gh/Doctorado-ML/benchmark)
|
||||||
|
[](http://haystack.local:25000/dashboard?id=benchmark)
|
||||||
|
[](http://haystack.local:25000/dashboard?id=benchmark)
|
||||||

|

|
||||||
|
|
||||||
# benchmark
|
# benchmark
|
||||||
|
|
||||||
Benchmarking models
|
Benchmarking models
|
||||||
|
3
sonar-project.properties
Normal file
3
sonar-project.properties
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
sonar.projectKey=benchmark
|
||||||
|
sonar.sourceEncoding=UTF-8
|
||||||
|
sonar.python.version="3.8, 3.9, 3.10"
|
Reference in New Issue
Block a user