diff options
author | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2016-05-19 10:50:00 +0200 |
---|---|---|
committer | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2016-05-19 10:50:00 +0200 |
commit | 133f43ee79028d63d929af6f23f37bf0bc8a6f82 (patch) | |
tree | 8c69352ed301a38ec1b3ddcb6c5bb79e57edcdf5 /jjb/genesis/genesis-fuel-att.yml | |
parent | 598be795dec8fa11bee7b6e140b33947ab35b8f0 (diff) |
Remove jobs for terminated and none-active projects
oscar: terminated project.
genesis: installers and genesisreq have their own jobs so genesis jobs
are obsolete.
Change-Id: I1f5e869d0bae0c6c199c7dd439ec035f9f59205b
Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
Diffstat (limited to 'jjb/genesis/genesis-fuel-att.yml')
-rw-r--r-- | jjb/genesis/genesis-fuel-att.yml | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/jjb/genesis/genesis-fuel-att.yml b/jjb/genesis/genesis-fuel-att.yml deleted file mode 100644 index 0202c2276..000000000 --- a/jjb/genesis/genesis-fuel-att.yml +++ /dev/null @@ -1,88 +0,0 @@ -# this is the job configuration for bgs -- project: - name: genesis-att - installer: - - fuel -# jobs: -# - 'genesis-{installer}-daily-att-{stream}' - - # stream: branch with - in place of / (eg. stable-helium) - # branch: branch (eg. stable/helium) - stream: - - master: - branch: 'master' - - project: 'genesis' - -######################## -# job templates -######################## - -- job-template: - name: 'genesis-{installer}-daily-att-{stream}' - - node: att-build - - disabled: true - - parameters: - - string: - name: BUILD_DIRECTORY - default: $WORKSPACE/build_output - description: "Directory where the build artifact will be located upon the completion of the build." - - string: - name: GS_URL - default: 'artifacts.opnfv.org/genesis/{installer}' - description: "URL to Google Storage." - - string: - name: INSTALLER - default: '{installer}' - description: "Installer to use." - - string: - name: GIT_BASE - default: https://gerrit.opnfv.org/gerrit/genesis - - string: - name: GERRIT_BRANCH - default: origin/master - description: "Branch to build, deploy and test." - - string: - name: GERRIT_REFSPEC - default: refs/heads/master - description: "Refspec to retrieve." - - scm: - - git: - skip-tag: true - url: $GIT_BASE - branches: - - $GERRIT_BRANCH - refspec: $GERRIT_REFSPEC - - triggers: - - pollscm: - cron: '@midnight' - - builders: - - '{installer}-daily-master-att' - -######################## -# builder macros -######################## - -- builder: - name: fuel-daily-master-att - builders: - - shell: | - #!/bin/bash - set -o errexit - set -o nounset - set -o pipefail - set -x - - # set/create the cache location - OPNFV_FUEL_CACHE="$(dirname $WORKSPACE)/opnfv_fuel_cache" - [[ -d $OPNFV_FUEL_CACHE ]] || mkdir -p $OPNFV_FUEL_CACHE - - # do the build - cd $WORKSPACE/fuel/ci - ./build.sh -f t -v $BUILD_ID -c file://$OPNFV_FUEL_CACHE $BUILD_DIRECTORY |