From c5c71ae47fe870155acf107a2f26a1309720f9db Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Mon, 28 Sep 2015 13:57:39 -0600 Subject: [PATCH] delete ice-setup job --- ice-setup/build/build | 36 -------------- ice-setup/config/definitions/ice-setup.yml | 55 ---------------------- 2 files changed, 91 deletions(-) delete mode 100644 ice-setup/build/build delete mode 100644 ice-setup/config/definitions/ice-setup.yml diff --git a/ice-setup/build/build b/ice-setup/build/build deleted file mode 100644 index 497f945b..00000000 --- a/ice-setup/build/build +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash -ex - -echo "BRANCH: $BRANCH" -cd $WORKSPACE/ice-setup - -DEBIAN=0 - -if [ $DIST = 'trusty' -o $DIST = 'precise' -o $DIST = 'wheezy' ] ; then - DEBIAN=1 -fi - -if [ $DEBIAN = 1 ] ; then - dpkg-buildpackage -us -uc -else - python ./setup.py sdist - - RPMBUILD=$WORKSPACE/rpmbuild - mkdir -p $RPMBUILD/{SOURCES,SRPMS,SPECS,RPMS,BUILD} - cp -a dist/ice_setup*.tar.gz $RPMBUILD/SOURCES/. - cp -a ice_setup.spec $RPMBUILD/SPECS/. - - cd $RPMBUILD - rpmbuild -ba --define "_topdir $RPMBUILD" SPECS/ice_setup.spec -fi - -cd $WORKSPACE -rm -rf $BRANCH -mkdir $BRANCH - -if [ $DEBIAN = 1 ] ; then - mv *.deb *.dsc *.changes *.tar.gz $BRANCH -else - find rpmbuild -name '*.rpm' -o -name '*.srpm' | xargs -i mv {} $BRANCH -fi - -exit 0 diff --git a/ice-setup/config/definitions/ice-setup.yml b/ice-setup/config/definitions/ice-setup.yml deleted file mode 100644 index 66a955b4..00000000 --- a/ice-setup/config/definitions/ice-setup.yml +++ /dev/null @@ -1,55 +0,0 @@ -- job: - axes: - - axis: - name: ARCH - type: label-expression - values: - - x86_64 - - axis: - name: DIST - type: label-expression - values: - - trusty - - precise - - centos - block-downstream: false - block-upstream: false - builders: - - shell: - !include-raw ../../build/build - concurrent: false - description: Build ice-setup as a package for Red Hat Ceph, non-Red Hat releases - disabled: false - execution-strategy: - run-sequentially: false - keep-dependencies: false - name: ice-setup - parameters: - - string: - default: master - description: '' - name: BRANCH - project-type: matrix - properties: - - github: - url: https://github.com/ceph/ice-setup/ - publishers: - - archive: - allow-empty: false - artifacts: $BRANCH/* - default-excludes: true - fingerprint: false - only-if-success: false - - description-setter: - regexp: '^BRANCH: (\S+)' - regexp-for-failed: null - set-for-matrix: false - scm: - - git: - basedir: ice-setup - branches: $BRANCH - url: https://github.com/ceph/ice-setup - wrappers: - - inject: - global: false - mask-password-params: true -- 2.39.5