- project: name: master-builds-dahdi-linux linux-ver: - "v4.19" - "v5.10" - "master" jobs: - 'master-dahdi-linux-{linux-ver}' - job-template: name: 'master-dahdi-linux-{linux-ver}' project-type: freestyle node: osmocom-master concurrent: true retry-count: 0 # scm checkout properties: - build-discarder: days-to-keep: 30 num-to-keep: 120 artifact-days-to-keep: -1 artifact-num-to-keep: -1 description: | Automatic jenkins test job of dahdi-linux built against linux {linux-ver} (OS#5407)

Auto-generated using Jenkins Job Builder. DO NOT EDIT MANUALLY! scm: # Let jenkins clone the big linux repository and keep it between builds # (wipe-workspace is false). Clone dahdi-linux with code from gerrit in # the shell part below. - git: basedir: 'linux' url: 'https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git' branches: - '{linux-ver}' refspec: '{linux-ver}' shallow-clone: true wipe-workspace: false clean: before: true triggers: - timed: "H H * * *" builders: - shell: | rm -rf dahdi-linux git clone \ --depth=1 \ https://gerrit.osmocom.org/dahdi-linux git -C dahdi-linux log --oneline docker run \ --rm=true \ -e "KSRC=/linux" \ -v "$PWD/dahdi-linux:/build" \ -v "$PWD/linux:/linux" \ "$USER/debian-buster-jenkins" \ timeout 10m su build -c /build/contrib/jenkins.sh publishers: - warnings: console-log-parsers: - 'GNU C Compiler 4 (gcc)' resolve-relative-paths: true - email: recipients: 'jenkins-notifications@lists.osmocom.org laforge@gnumonks.org' send-to-individuals: true # vim: expandtab tabstop=2 shiftwidth=2