File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed
.github/actions/run-tests Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 11FROM golang:1.16-buster as builder
22
3- # Up-to-date libgit2 dependencies are only available in
4- # unstable, as libssh2 in testing/bullseye has been linked
5- # against gcrypt which causes issues with PKCS* formats.
6- # Ref: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=668271
7- RUN echo "deb http://deb.debian.org/debian unstable main" >> /etc/apt/sources.list \
8- && echo "deb-src http://deb.debian.org/debian unstable main" >> /etc/apt/sources.list
3+ # Build dependencies
94RUN set -eux; \
10- apt-get update \
11- && apt-get install -y libgit2-dev/unstable \
5+ apt-get update && \
6+ apt-get install -y \
7+ cmake \
8+ curl \
9+ gcc \
10+ libc6-dev \
11+ make \
12+ pkg-config \
13+ python3 \
1214 && apt-get clean \
1315 && apt-get autoremove --purge -y \
1416 && rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments