diff --git a/appveyor.yml b/appveyor.yml index 9f9c5b76..f1e46ae4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -68,6 +68,7 @@ skip_commits: - azure-pipelines.yml - azure-pipelines/* - LICENSE + - codecov.yml cache: - C:\tools\vcpkg\installed diff --git a/azure-pipelines/linux.yml b/azure-pipelines/linux.yml index c1cbe1b4..d23cf45e 100644 --- a/azure-pipelines/linux.yml +++ b/azure-pipelines/linux.yml @@ -8,6 +8,7 @@ trigger: - .github/* - README.md - appveyor.yml + - codecov.yml tags: include: - '*' diff --git a/azure-pipelines/macos.yml b/azure-pipelines/macos.yml index d9ae8aba..d72564ed 100644 --- a/azure-pipelines/macos.yml +++ b/azure-pipelines/macos.yml @@ -8,6 +8,7 @@ trigger: - .github/* - README.md - appveyor.yml + - codecov.yml tags: include: - '*' diff --git a/azure-pipelines/templates/sonarcloud-job.yml b/azure-pipelines/templates/sonarcloud-job.yml index 309092b2..562a5dc9 100644 --- a/azure-pipelines/templates/sonarcloud-job.yml +++ b/azure-pipelines/templates/sonarcloud-job.yml @@ -155,7 +155,7 @@ jobs: displayName: collect coverage data workingDirectory: build condition: ne(variables['Agent.OS'], 'Windows_NT') - - bash: bash <(curl -s https://codecov.io/bash) -f coverage.info -t b8f07100-6985-49f7-aa4c-14e36f29ac80s + - bash: bash <(curl -s https://codecov.io/bash) -f coverage.info displayName: codeCov workingDirectory: build continueOnError: true diff --git a/azure-pipelines/windows.yml b/azure-pipelines/windows.yml index 49eab1ad..341be4bc 100644 --- a/azure-pipelines/windows.yml +++ b/azure-pipelines/windows.yml @@ -8,6 +8,7 @@ trigger: - .github/* - README.md - appveyor.yml + - codecov.yml tags: include: - '*' diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 00000000..173eb72b --- /dev/null +++ b/codecov.yml @@ -0,0 +1,3 @@ +codecov: + token: b8f07100-6985-49f7-aa4c-14e36f29ac80 + require_ci_to_pass: yes