Skip to content

Commit d743f29

Browse files
committed
Merge branch 'master' into fix-lua-lightuserdata-arm64
2 parents 21f5ab6 + d67fa66 commit d743f29

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
run: |
4242
git clone https://github.com/varnishcache/varnish-cache.git ./varnish
4343
pushd varnish
44+
git submodule update --init
4445
./autogen.sh
4546
CC='${{ matrix.cc }}' ./configure
4647
make -sj32

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,6 @@ Makefile.in
3131
/src/vcc_*_if.c
3232
/src/vcc_*_if.h
3333
/src/vmod_*rst
34+
/src/vmod_vcs_version.txt
3435

3536
/.vagrant/

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:noble-20240423
1+
FROM ubuntu:noble-20250714
22

33
ENV DEBIAN_FRONTEND noninteractive
44

@@ -47,6 +47,7 @@ RUN apt update \
4747

4848
RUN git clone https://github.com/varnishcache/varnish-cache.git /tmp/varnish \
4949
&& cd /tmp/varnish \
50+
&& git submodule update --init \
5051
&& ./autogen.sh \
5152
&& ./configure \
5253
&& make \

src/Makefile.am

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ EXTRA_DIST = \
5353
vmod_cfg.vcc \
5454
$(VMOD_TESTS)
5555

56+
DISTCLEANFILES = vmod_vcs_version.txt
57+
5658
$(srcdir)/script_javascript.c: script_javascript_helpers.h
5759

5860
script_javascript_helpers.h: script_javascript_helpers.js

0 commit comments

Comments
 (0)