From 2204dd0373b369568dc71b884b5681b48b9ddee9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 25 Aug 2025 16:30:22 +0200 Subject: [PATCH] ci: drop unnecessary path from node build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was a hack-fix for actual issue which was simply that the multibranch pipeline was not fetching submodules when cloning. Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.nix-flake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/Jenkinsfile.nix-flake b/ci/Jenkinsfile.nix-flake index 338e46a2..697db2aa 100644 --- a/ci/Jenkinsfile.nix-flake +++ b/ci/Jenkinsfile.nix-flake @@ -1,4 +1,4 @@ -library 'status-jenkins-lib@v1.9.16' +library 'status-jenkins-lib@v1.9.26' pipeline { agent { @@ -28,7 +28,7 @@ pipeline { stages { stage('Build') { steps { script { - nix.flake('node',[path: 'git+https://github.com/waku-org/go-waku']) + nix.flake('node') } } } stage('Check') {