ref: 6555ca3b78a734e0b4098fd224c3c46f9e064eb0 dir: /Jenkinsfile/
pipeline { agent any stages { stage('Build') { steps { sh 'make -j"$(expr 2 \\* "$(nproc)")"' archiveArtifacts artifacts: 'tlsclient', fingerprint: true } } } }