CI (Intégration continue)

Posted on sam. 24 novembre 2018 in Programmation • Tagged with dev, ci, tool

Travis-CI

Nom du fichier : .travis.yml

.NET

language: csharp
solution: solution.sln
install:
  - sudo apt-get install -y gtk-sharp2
  - nuget restore solution.sln
addons:
  sonarqube: true
env:
  global:
    secure: SONARQUBE_TOKEN_SECURE
script:
  - xbuild /p:Configuration=Release solution.sln
  - sonar-scanner -Dsonar.login=$SONAR_TOKEN

Ionic

sudo: false

language: node_js
node_js:
  - "0.12.2"

addons …

Continue reading