Skip to content

Commit 1d33347

Browse files
committed
[DOCKER/CI] Add missing dependency on curl for Alpine
1 parent 2a70062 commit 1d33347

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
bash \
4646
cmake \
4747
ceph-dev \
48+
curl \
4849
curl-dev \
4950
fuse-dev \
5051
fuse3-dev \

docker/Dockerfile.alpine

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ RUN apk add \
44
bash \
55
cmake \
66
ceph-dev \
7+
curl \
78
curl-dev \
89
fuse-dev \
910
fuse3-dev \

tests/cluster/test.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ for host in "${!hosts[@]}"; do
126126
count=0
127127

128128
for suffix in "${HTTP_SUFFIX[@]}"; do
129-
${CURL} -v -L ${hosts_http[$host]}/${RMTDATADIR}/${host}${suffix} -o ${LCLDATADIR}/${host}.dat_http${count}
130-
count=$((count + 1))
129+
${CURL} -v -L ${hosts_http[$host]}/${RMTDATADIR}/${host}${suffix} -o ${LCLDATADIR}/${host}.dat_http${count}
130+
count=$((count + 1))
131131
done
132132
done
133133

@@ -198,9 +198,9 @@ for host in "${!hosts[@]}"; do
198198
count=0
199199

200200
for suffix in "${HTTP_SUFFIX[@]}"; do
201-
${XRDFS} ${HOST_METAMAN} rm "${RMTDATADIR}/${host}${MAP_HTTP_XRD_SUFFIX[$suffix]}" &
202-
rm ${LCLDATADIR}/${host}.dat_http${count} &
203-
count=$((count + 1))
201+
${XRDFS} ${HOST_METAMAN} rm "${RMTDATADIR}/${host}${MAP_HTTP_XRD_SUFFIX[$suffix]}" &
202+
rm ${LCLDATADIR}/${host}.dat_http${count} &
203+
count=$((count + 1))
204204
done
205205
done
206206

0 commit comments

Comments
 (0)