File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ CLN_VERSIONS = \
4949 v22.11gl1 \
5050 v23.05gl1 \
5151 v23.08gl1 \
52- v24.02gl1
52+ v24.02gl1 \
53+ v24.11gl1
5354
5455DOCKER_OPTIONS = \
5556 --rm \
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ ENV CLNVM_CACHE_DIR=/opt/cln
162162ENV GL_TESTING_IGNORE_HASH=1
163163
164164# Enumerate all versions that gl-testing should find
165- ENV CLN_PATH=/opt/cln/v0.10.1/usr/local/bin/:/opt/cln/v0.10.2/usr/local/bin/:/opt/cln/v0.11.0.1/usr/local/bin/:/opt/cln/v0.11.2gl2/usr/local/bin/:/opt/cln/v22.11gl1/usr/local/bin/:/opt/cln/v23.05gl1/usr/local/bin/:/opt/cln/v23.08gl1/usr/local/bin/:/opt/cln/v24.02gl1/usr/local/bin/
165+ ENV CLN_PATH=/opt/cln/v0.10.1/usr/local/bin/:/opt/cln/v0.10.2/usr/local/bin/:/opt/cln/v0.11.0.1/usr/local/bin/:/opt/cln/v0.11.2gl2/usr/local/bin/:/opt/cln/v22.11gl1/usr/local/bin/:/opt/cln/v23.05gl1/usr/local/bin/:/opt/cln/v23.08gl1/usr/local/bin/:/opt/cln/v24.02gl1/usr/local/bin/:/opt/cln/v24.11gl1/usr/local/bin/
166166
167167# Create a non-root user.
168168ARG GID=0
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ pub mod model;
4747mod report;
4848mod resolve;
4949
50- const VERSION : & str = "v24.02 " ;
50+ const VERSION : & str = "v24.11 " ;
5151const GITHASH : & str = env ! ( "GIT_HASH" ) ;
5252const RUNE_VERSION : & str = "gl0" ;
5353// This is the same derivation key that is used by core lightning itself.
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ def is_compat(self, nv: NodeVersion) -> bool:
1919 "v23.05" : ["v23.05gl1" ],
2020 "v23.08" : ["v23.08gl1" ],
2121 "v24.02" : ["v24.02gl1" ],
22+ "v24.11" : ["v24.11gl1" ],
2223 }
2324
2425 return self .name in compat [nv .name ]
@@ -35,6 +36,7 @@ def get_node_version(self):
3536 "v23.05" : "v23.05gl1" ,
3637 "v23.08" : "v23.08gl1" ,
3738 "v24.02" : "v24.02gl1" ,
39+ "v24.11" : "v24.11gl1" ,
3840 }
3941 return m [self .name ]
4042
You can’t perform that action at this time.
0 commit comments