@Library('jenkins-joylib@v1.0.2') _ pipeline { agent { label joyCommonLabels(image_ver: '19.1.0') } options { buildDiscarder(logRotator(numToKeepStr: '10')) timestamps() } stages { stage('check') { steps{ sh('make check') } } stage('test') { steps{ sh('make test') } } } }