mirror of https://gerrit.osmocom.org/osmo-ci
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
---
|
|
- project:
|
|
name: Osmocom-list-commits
|
|
jobs:
|
|
- Osmocom-list-commits
|
|
|
|
- job-template:
|
|
name: 'Osmocom-list-commits'
|
|
project-type: freestyle
|
|
defaults: global
|
|
description: |
|
|
Generate and upload a list of Osmocom git repositories and their latest tag and commits.
|
|
<b>The latest list is <a href="https://jenkins.osmocom.org/jenkins/job/Osmocom-list-commits/lastSuccessfulBuild/artifact/commits.txt/*view*/">here</a>.</b>
|
|
node: osmocom-master
|
|
parameters:
|
|
- string:
|
|
name: BRANCH
|
|
description: |
|
|
osmo-ci.git branch where the osmocom-list-commits.sh gets pulled from
|
|
default: '*/master'
|
|
builders:
|
|
- shell: |
|
|
scripts/osmocom-list-commits.sh > commits.txt
|
|
cat commits.txt
|
|
scm:
|
|
- git:
|
|
branches:
|
|
- '$BRANCH'
|
|
url: https://gerrit.osmocom.org/osmo-ci
|
|
git-config-name: 'Jenkins Builder'
|
|
git-config-email: 'jenkins@osmocom.org'
|
|
triggers:
|
|
- timed: "@midnight"
|
|
publishers:
|
|
- archive:
|
|
allow-empty: false
|
|
artifacts: commits.txt
|
|
case-sensitive: true
|
|
only-if-success: true
|
|
- email:
|
|
notify-every-unstable-build: true
|
|
recipients: 'jenkins-notifications@lists.osmocom.org'
|
|
|
|
# vim: expandtab tabstop=2 shiftwidth=2
|