Removed build and analysis tools

This commit is contained in:
GuilhermeStrice
2021-01-07 10:08:48 +00:00
parent 9fb1579f6f
commit ad646354d9
4 changed files with 0 additions and 76 deletions

View File

@ -1,28 +0,0 @@
language: csharp
mono: none
dotnet: 2.0.0
dist: trusty
script:
- dotnet restore
- dotnet build
script:
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then bash ./travis/run_on_pull_requests; fi'
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash ./travis/run_on_non_pull_requests; fi'
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "cvhTXG9G8vTWQhpdJNDx1aip4dxshSoD/xHohiOl2bc8IV3UETsTBL8BbIRy8aYCmqu67fR6ho9eUJ5BFWOeVExTMAqcG3tWG9vzlsNPgviRdL0LNImhR4scAmp0Yr0jhamCw1tPGGNyfaZ4Z5Pq9AhgrbeGP8P7hsjYox1oS29mvFDm7s5tVtA+6kzMu+JXQQbXtRspQGiirK0ffZpAXr5JGEZJ6iuMxaBqAPchvoKkWbNn4IFUgJi99xQT50AIGleznZSn+rY1AhZO+Q2gH8+gj8NJCKuybeAH//ldE5UH3oHhwRX2KAlDmsDMWTRJiD6KrlkFfYAMivtwa/5cWdVOsksp3RigjgA3xgdZuNSv0zS8wH2+b1WH+m6fjZa5SMWVCn7D01FpSKaV9X6lITXvvALXQji2jPfovubifC/WxB8HpkE/DZzQMp+8O13/fsDAHwvj48peYod+2W3koY5eI9PsWnrEngFSBCnvhS8JOSxnG5Dmu+EQG04dIgzpl61JoyF3yrRw50pfxGy7jd68T3Y6uAL0VMK9TRwv8Lzcy9EF84YW47SvyZPKUvRteaYd860rArd1ihJSy4kHcqheteXAVUtr8CY62E1VXAtZ8MWLpDTcvUsUI4y/P+xTHTuAef4VZupaYRxYan5wB2QBQXNTKjZ9dJaSUBM5EzU="
before_install:
- echo -n | openssl s_client -connect https://scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
- nvm install 10.14.1
- nvm use 10.14.1
- npm install
addons:
sonarcloud:
organization: "xx-thedoctor-xx"
token: "$TRAVIS_SONARCLOUD_TOKEN"
script:
- sonar-scanner

View File

@ -1,13 +1,5 @@
# PMF - Package Management Framework # PMF - Package Management Framework
## Build Status
[![Build Status](https://travis-ci.com/xX-TheDoctor-Xx/PMF.svg?branch=master)](https://travis-ci.com/xX-TheDoctor-Xx/PMF) [![Build Status](https://travis-ci.com/xX-TheDoctor-Xx/PMF.svg?branch=master)](https://travis-ci.com/xX-TheDoctor-Xx/PMF)
## Code Coverage
[![Coverage Status](https://coveralls.io/repos/github/xX-TheDoctor-Xx/PMF/badge.svg?branch=master)](https://coveralls.io/github/xX-TheDoctor-Xx/PMF?branch=master) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/223fdbeb618c4f1c8969eb5a4a354bc6)](https://www.codacy.com/manual/guilhermesuicida123654/PMF?utm_source=github.com&utm_medium=referral&utm_content=xX-TheDoctor-Xx/PMF&utm_campaign=Badge_Grade)
PMF is a barebones C# library that provides basic support for package management PMF is a barebones C# library that provides basic support for package management
# Features # Features

View File

@ -1,28 +0,0 @@
version: 1.0.{build}
skip_tags: true
image: Visual Studio 2019
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
environment:
COVERALLS_REPO_TOKEN:
secure: R+Jc9tMD0NdANAabzHqtZi4gymBCKRbKas0s0LEUQh5xOQLQDVZFUcMpxV3Yfd4c
build_script:
- dotnet build
test_script:
- ps: >-
nuget install xunit.runner.console -OutputDirectory packages -Version 2.3.1
nuget install OpenCover -OutputDirectory packages -Version 4.6.166
dotnet tool install coveralls.net --version 1.0.0-beta0002 --tool-path tools
.\packages\OpenCover.4.6.166\tools\OpenCover.Console.exe -register:user -target:dotnet.exe "-targetargs:"".\packages\xunit.runner.console.2.3.1\tools\netcoreapp2.0\xunit.console.dll"" "".\PMF.Tests\bin\Debug\netcoreapp2.0\PMF.Tests.dll"" -noshadow -appveyor" -filter:"+[GameOfLife*]*" -oldStyle -output:opencoverCoverage.xml
$coveralls = ".\tools\csmacnz.coveralls.exe"
& $coveralls --opencover -i opencoverCoverage.xml --repoToken $env:COVERALLS_REPO_TOKEN --commitId $env:APPVEYOR_REPO_COMMIT --commitBranch $env:APPVEYOR_REPO_BRANCH --commitAuthor $env:APPVEYOR_REPO_COMMIT_AUTHOR --commitEmail $env:APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL --commitMessage $env:APPVEYOR_REPO_COMMIT_MESSAGE --jobId $env:APPVEYOR_JOB_ID

View File

@ -1,12 +0,0 @@
sonar.projectKey=xX-TheDoctor-Xx_PMF
sonar.organization=xx-thedoctor-xx
# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=PMF
#sonar.projectVersion=1.0
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
#sonar.sources=.
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8