Gary Wu | 0bb72f5 | 2017-07-13 12:32:14 -0700 | [diff] [blame] | 1 | --- |
| 2 | - parameter: |
| 3 | name: integration-test-plan |
| 4 | parameters: |
| 5 | - string: |
| 6 | name: TESTPLAN |
| 7 | default: '{test-plan}' |
| 8 | description: 'General test plan we will run unless stream-specific one is found' |
| 9 | |
| 10 | - parameter: |
| 11 | name: integration-test-options |
| 12 | parameters: |
| 13 | - string: |
| 14 | name: TESTOPTIONS |
| 15 | default: '{test-options}' |
| 16 | description: 'Robot command options' |
| 17 | |
Jessica Wagantall | f3e2db7 | 2017-11-14 00:52:23 -0800 | [diff] [blame] | 18 | - parameter: |
| 19 | name: html-publisher-dir |
| 20 | parameters: |
| 21 | - string: |
| 22 | name: HTMLDIR |
| 23 | default: '{html-dir}' |
| 24 | description: 'Directory location to be used by HTML publisher plugin' |
| 25 | |
| 26 | - parameter: |
| 27 | name: html-publisher-files |
| 28 | parameters: |
| 29 | - string: |
| 30 | name: HTMLFILES |
| 31 | default: '{html-files}' |
| 32 | description: 'File name to be used by HTML publisher plugin to produce the report' |
| 33 | |
Gary Wu | 0bb72f5 | 2017-07-13 12:32:14 -0700 | [diff] [blame] | 34 | - builder: |
| 35 | name: integration-install-robotframework |
| 36 | builders: |
| 37 | - shell: |
| 38 | !include-raw: |
| 39 | - include-raw-integration-install-robotframework.sh |
| 40 | |
| 41 | - builder: |
| 42 | name: integration-run-test |
| 43 | builders: |
Gary Wu | b344044 | 2018-09-27 10:47:38 -0700 | [diff] [blame] | 44 | - shell: "${WORKSPACE}/run-csit.sh ${TESTPLAN} ${TESTOPTIONS}" |
Gary Wu | 0bb72f5 | 2017-07-13 12:32:14 -0700 | [diff] [blame] | 45 | |
| 46 | - builder: |
| 47 | name: integration-autorelease-fix-relativepaths |
| 48 | builders: |
| 49 | - shell: "${WORKSPACE}/autorelease/scripts/fix-relativepaths.sh" |
| 50 | |
| 51 | - builder: |
| 52 | name: integration-autorelease-set-version |
| 53 | builders: |
| 54 | - shell: "${WORKSPACE}/autorelease/scripts/set-version.sh" |
| 55 | |
Bartek Grzybowski | 2dd0554 | 2020-02-07 15:10:03 +0100 | [diff] [blame] | 56 | - builder: |
| 57 | name: integration-install-vagrant |
| 58 | builders: |
| 59 | - shell: | |
| 60 | #!/bin/bash |
| 61 | set -ex # Fail build if any setup step fails |
Bartek Grzybowski | fb003df | 2020-02-11 10:26:49 +0100 | [diff] [blame] | 62 | sudo add-apt-repository --yes ppa:tiagohillebrandt/vagrant |
| 63 | sudo apt update |
| 64 | sudo apt --yes install libxslt-dev libxml2-dev libvirt-dev zlib1g-dev ruby-dev vagrant |
Bartek Grzybowski | 2dd0554 | 2020-02-07 15:10:03 +0100 | [diff] [blame] | 65 | vagrant plugin install vagrant-libvirt |
| 66 | vagrant plugin install vagrant-disksize |
Bartek Grzybowski | 1433357 | 2020-06-09 14:27:47 +0200 | [diff] [blame] | 67 | vagrant plugin install vagrant-sshfs |
Pawel Wieczorek | 20e6bd8 | 2020-07-20 13:09:00 +0200 | [diff] [blame^] | 68 | vagrant plugin install vagrant-reload |
Bartek Grzybowski | 2dd0554 | 2020-02-07 15:10:03 +0100 | [diff] [blame] | 69 | mkdir -p ~/.ssh |
| 70 | |
Bartek Grzybowski | bcdbfa0 | 2020-03-31 06:56:10 -0700 | [diff] [blame] | 71 | - builder: |
| 72 | name: integration-docker-compose-logs |
| 73 | builders: |
| 74 | - shell: !include-raw: shell/docker-compose-logs.sh |
| 75 | |
Gary Wu | 0bb72f5 | 2017-07-13 12:32:14 -0700 | [diff] [blame] | 76 | - publisher: |
| 77 | name: integration-robot |
| 78 | publishers: |
| 79 | - robot: |
| 80 | output-path: 'archives' |
| 81 | other-files: '' |
| 82 | unstable-threshold: '{unstable-if}' |
| 83 | pass-threshold: '{pass-if}' |
| 84 | only-critical: false |
Bartek Grzybowski | bcdbfa0 | 2020-03-31 06:56:10 -0700 | [diff] [blame] | 85 | |
| 86 | - publisher: |
| 87 | name: integration-docker-compose-logs |
| 88 | publishers: |
| 89 | - postbuildscript: |
| 90 | builders: |
| 91 | - role: BOTH |
| 92 | build-on: |
| 93 | - FAILURE |
| 94 | - SUCCESS |
| 95 | - UNSTABLE |
| 96 | build-steps: |
| 97 | - integration-docker-compose-logs |