diff options
author | Dmitriy Eshenko <dmitriy.eshenko@accel-ppp.org> | 2024-04-13 20:43:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-13 20:43:37 +0300 |
commit | 74a58e70f03db19263d377dbad0ca289ea07a7ad (patch) | |
tree | 80ad766948cd47de6083bd044f33738c2862be08 | |
parent | 3668336266cb74b6d37e5b56c9c5b74761a868fc (diff) | |
parent | c18172781703ce4da2445943efc0b459b7c20414 (diff) | |
download | accel-ppp-74a58e70f03db19263d377dbad0ca289ea07a7ad.tar.gz accel-ppp-74a58e70f03db19263d377dbad0ca289ea07a7ad.zip |
Merge pull request #134 from svlobanov/gcovr-fix
ci: remove unnecessary gcovr python package where it's not required
-rw-r--r-- | .github/workflows/run-tests.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index b812b572..95173b25 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -125,7 +125,7 @@ jobs: libpcre3-dev libssl-dev liblua5.1-0-dev kmod python3-pip libxml2-dev libxslt1-dev zlib1g-dev iproute2 ppp pppoe isc-dhcp-client timelimit && - (sudo pip3 install pytest pytest-dependency gcovr || sudo pip3 install --break-system-packages pytest pytest-dependency gcovr)" + (sudo pip3 install pytest pytest-dependency || sudo pip3 install --break-system-packages pytest pytest-dependency)" - name: Copy source code to target OS run: | tar -Jcf accel-ppp.tar.xz accel-ppp @@ -206,7 +206,7 @@ jobs: - name: Install testing tools (using pip) run: > - sudo pip3 install pytest pytest-dependency gcovr + sudo pip3 install pytest pytest-dependency - name: Check out repository code uses: actions/checkout@v3 @@ -216,7 +216,7 @@ jobs: - name: mkdir build run: mkdir build - - name: cmake (with coverage) + - name: cmake working-directory: ./build run: > cmake -DBUILD_IPOE_DRIVER=TRUE -DBUILD_VLAN_MON_DRIVER=TRUE -DCMAKE_INSTALL_PREFIX=/usr |