8000 Improvements in project build coverage reporting. by jgebal · Pull Request #1182 · utPLSQL/utPLSQL · GitHub
[go: up one dir, main page]

Skip to content

Improvements in project build coverage reporting. #1182

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Feb 6, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adding Codecov.
Trying to fix Sonar DB level analysis.
  • Loading branch information
jgebal committed Feb 5, 2022
commit 3f4d2f601088e399c4f25ae57f72a070851b5233
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,15 @@ jobs:
id: validate-reports-format
run: bash .github/scripts/validate_report_files.sh

- name: Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ./cobertura.xml
flags: ${{matrix.db_version_name}}
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)

- name: SonarCloud Scan
id: sonar
uses: SonarSource/sonarcloud-github-action@master
Expand All @@ -138,7 +147,7 @@ jobs:
with:
args: >
-Dsonar.buildString=${{ format( '{0}.{1}', env.UTPLSQL_BUILD_VERSION, matrix.id ) }}
-Dsonar.plsql.jdbc.url=${{ format( 'jdbc:oracle:thin:@{0}', env.CONNECTION_STR ) }}
-Dsonar.plsql.jdbc.url=${{ format( 'jdbc:oracle:thin:@//{0}', env.CONNECTION_STR ) }}
-Dsonar.plsql.jdbc.driver.path=${{ format( '{0}/ojdbc8.jar', env.OJDBC_HOME ) }}

publish:
Expand Down
0