Skip to content

Commit 51b96bc

Browse files
committed
Added 'git submodule update --init' after cloning Varnish repo
1 parent 51d1fd2 commit 51b96bc

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
run: |
3939
git clone https://github.com/varnishcache/varnish-cache.git ./varnish
4040
pushd varnish
41+
git submodule update --init
4142
./autogen.sh
4243
CC='${{ matrix.cc }}' ./configure
4344
make -sj32

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ RUN apt update \
4343

4444
RUN git clone https://github.com/varnishcache/varnish-cache.git /tmp/varnish \
4545
&& cd /tmp/varnish \
46+
&& git submodule update --init \
4647
&& ./autogen.sh \
4748
&& ./configure \
4849
&& make \

0 commit comments

Comments
 (0)