From 9b82225697ac2530f416a5c17792fe071b8ebe12 Mon Sep 17 00:00:00 2001 From: Michele Scuttari Date: Sat, 21 Sep 2024 01:23:31 +0200 Subject: [PATCH] Use mold linker for CI testing --- .jenkins/dev-debian-12.Jenkinsfile | 2 +- .jenkins/dev-fedora-40.Jenkinsfile | 2 +- .jenkins/dev-ubuntu-22.04.Jenkinsfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.jenkins/dev-debian-12.Jenkinsfile b/.jenkins/dev-debian-12.Jenkinsfile index 5605ff412..25b91049f 100644 --- a/.jenkins/dev-debian-12.Jenkinsfile +++ b/.jenkins/dev-debian-12.Jenkinsfile @@ -49,7 +49,7 @@ node { } stage('Configure') { - cmake arguments: "-S " + runtimeSrcPath + " -B " + runtimeBuildPath + " -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=" + runtimeInstallPath, installation: 'InSearchPath', label: 'Configure' + cmake arguments: "-S " + runtimeSrcPath + " -B " + runtimeBuildPath + " -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_LINKER_TYPE=MOLD -DCMAKE_INSTALL_PREFIX=" + runtimeInstallPath, installation: 'InSearchPath', label: 'Configure' } stage('Build') { diff --git a/.jenkins/dev-fedora-40.Jenkinsfile b/.jenkins/dev-fedora-40.Jenkinsfile index 802dd90b8..322bdbc08 100644 --- a/.jenkins/dev-fedora-40.Jenkinsfile +++ b/.jenkins/dev-fedora-40.Jenkinsfile @@ -49,7 +49,7 @@ node { } stage('Configure') { - cmake arguments: "-S " + runtimeSrcPath + " -B " + runtimeBuildPath + " -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=" + runtimeInstallPath, installation: 'InSearchPath', label: 'Configure' + cmake arguments: "-S " + runtimeSrcPath + " -B " + runtimeBuildPath + " -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_LINKER_TYPE=MOLD -DCMAKE_INSTALL_PREFIX=" + runtimeInstallPath, installation: 'InSearchPath', label: 'Configure' } stage('Build') { diff --git a/.jenkins/dev-ubuntu-22.04.Jenkinsfile b/.jenkins/dev-ubuntu-22.04.Jenkinsfile index 772f81a1b..aaf058de8 100644 --- a/.jenkins/dev-ubuntu-22.04.Jenkinsfile +++ b/.jenkins/dev-ubuntu-22.04.Jenkinsfile @@ -49,7 +49,7 @@ node { } stage('Configure') { - cmake arguments: "-S " + runtimeSrcPath + " -B " + runtimeBuildPath + " -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=" + runtimeInstallPath, installation: 'InSearchPath', label: 'Configure' + cmake arguments: "-S " + runtimeSrcPath + " -B " + runtimeBuildPath + " -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_LINKER_TYPE=MOLD -DCMAKE_INSTALL_PREFIX=" + runtimeInstallPath, installation: 'InSearchPath', label: 'Configure' } stage('Build') {