diff options
author | Sergey V. Lobanov <sergey@lobanov.in> | 2024-04-12 01:05:08 +0200 |
---|---|---|
committer | Sergey V. Lobanov <sergey@lobanov.in> | 2024-04-12 01:05:08 +0200 |
commit | c18172781703ce4da2445943efc0b459b7c20414 (patch) | |
tree | 80ad766948cd47de6083bd044f33738c2862be08 | |
parent | 3668336266cb74b6d37e5b56c9c5b74761a868fc (diff) | |
download | accel-ppp-c18172781703ce4da2445943efc0b459b7c20414.tar.gz accel-ppp-c18172781703ce4da2445943efc0b459b7c20414.zip |
ci: remove unnecessary gcovr python package where it's not required
This patch fixes debian10 build
Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
-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 |