We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51d1fd2 commit 51b96bcCopy full SHA for 51b96bc
.github/workflows/main.yml
@@ -38,6 +38,7 @@ jobs:
38
run: |
39
git clone https://github.com/varnishcache/varnish-cache.git ./varnish
40
pushd varnish
41
+ git submodule update --init
42
./autogen.sh
43
CC='${{ matrix.cc }}' ./configure
44
make -sj32
Dockerfile
@@ -43,6 +43,7 @@ RUN apt update \
RUN git clone https://github.com/varnishcache/varnish-cache.git /tmp/varnish \
45
&& cd /tmp/varnish \
46
+ && git submodule update --init \
47
&& ./autogen.sh \
48
&& ./configure \
49
&& make \
0 commit comments