Skip to content

Commit 80496a2

Browse files
authored
fix(jenkins): move audit to docker-ubuntu24-xlarge for glibc 2.39 (SAST exit 51) (#3519)
The analyzer-manager SAST sub-binary (zd_scanner) is a PyInstaller- packed Python 3.14 app with a native extension built against GLIBC_2.34. The docker-ubuntu20-xlarge agent ships glibc 2.31, which is too old: ImportError: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by .../zd_scanner/native/_dfa.cpython-314-...so) Switching the agent label to docker-ubuntu24-xlarge (glibc 2.39) restores SAST and resolves the `Sast scan exit status 51` failure seen in the Audit stage.
1 parent 2f3acd3 commit 80496a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ properties([
1414
])
1515
])
1616

17-
node("docker-ubuntu20-xlarge") {
17+
node("docker-ubuntu24-xlarge") {
1818
cleanWs()
1919
// Subtract repo name from the repo url (https://REPO_NAME/ -> REPO_NAME/)
2020
withCredentials([string(credentialsId: 'repo21-url', variable: 'REPO21_URL')]) {

0 commit comments

Comments
 (0)