Skip to content

Commit

Permalink
Merge pull request #438 from nlrcomcast/RDKB-48595
Browse files Browse the repository at this point in the history
updated Ubuntu runner label in push.yml
  • Loading branch information
sadhyama committed Oct 16, 2023
2 parents 7a3ebc6 + 22bca0d commit 782950f
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
jobs:
test:
name: Unit Tests
runs-on: [ ubuntu-latest ]
runs-on: [ ubuntu-20.04 ]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
Expand All @@ -33,7 +33,7 @@ jobs:
run: |
sudo apt update
sudo apt-get -y install valgrind libcunit1 libcunit1-doc libcunit1-dev libmsgpack-dev gcovr libtool
pip install codecov
pip install coverage
- name: Make Build Directory
run: mkdir build
Expand All @@ -59,15 +59,9 @@ jobs:
run: |
gcovr --sonarqube coverage.xml -r ..
- name: Upload SonarCloud
run: |
build/sonar-scanner/bin/sonar-scanner -Dsonar.host.url=https://sonarcloud.io -Dproject.settings=.sonar-project.properties -Dsonar.login=${{ secrets.SONAR_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload Codecov.io
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
uses: codecov/codecov-action@v1
with:
directory: .
flags: unittests
directory: .
fail_ci_if_error: true

0 comments on commit 782950f

Please sign in to comment.