Skip to content

Commit 926dec6

Browse files
authored
Merge pull request #375 from cglewis/master
need g++ for greenlet
2 parents 14104db + ee86dc8 commit 926dec6

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
export PATH=/home/runner/.local/bin:$PATH && \
2222
make test && \
2323
coverage report && coverage xml && \
24-
sudo ./network_tap/ncapture/test_ncapture.sh
24+
cd network_tap/ncapture && sudo ./test_ncapture.sh
2525
- name: Upload coverage to Codecov
2626
uses: codecov/[email protected]
2727
env:

network_tap/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ COPY healthcheck /healthcheck
77
RUN apk add --update \
88
curl \
99
gcc \
10+
g++ \
1011
git \
1112
linux-headers \
1213
musl-dev \
@@ -17,6 +18,7 @@ RUN apk add --update \
1718
&& pip3 install --no-cache-dir -r /healthcheck/requirements.txt \
1819
&& apk del \
1920
gcc \
21+
g++ \
2022
git \
2123
linux-headers \
2224
musl-dev \

0 commit comments

Comments
 (0)