35 lines
877 B
YAML
35 lines
877 B
YAML
kind: pipeline
|
|
name: sonarcube
|
|
type: docker
|
|
|
|
steps:
|
|
- name: unity-build-tests
|
|
image: docker.io/library/unity-test-runner:0.1
|
|
commands:
|
|
- ls
|
|
- /opt/unity/editors/2021.3.19f1/Editor/Unity -batchmode -nographics -projectPath . -executeMethod GitTools.Solution.Sync -quit
|
|
|
|
- name: code-analysis
|
|
pull: if-not-exists
|
|
image: mcr.microsoft.com/dotnet/sdk:6.0
|
|
commands:
|
|
- apt-get update && apt-get install -y unzip
|
|
- export PATH="$PATH:/root/.dotnet/tools"
|
|
- ls
|
|
- rm Assembly-CSharp-Editor.csproj
|
|
- rm Assembly-CSharp.csproj
|
|
- dotnet tool install --global dotnet-sonarscanner
|
|
|
|
environment:
|
|
SONAR_HOST:
|
|
from_secret: sonar_host
|
|
SONAR_TOKEN:
|
|
from_secret: sonar_token
|
|
SONAR_PROJECT_KEY:
|
|
from_secret: sonar_project_key
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
- pull_request
|