summaryrefslogtreecommitdiffstats
path: root/jjb/functest/xtestingci.yaml
blob: 77dac47b69fe44459092436de8a2c920f0af36ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
- builder:
    name: xtestingci-tests
    builders:
      - shell: |
          set +x
          curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.11.1/kind-linux-amd64
          chmod +x ./kind
          mv ./kind /usr/local/bin/kind
          kind delete clusters xtesting
          sudo docker ps -aq |xargs docker stop
          sudo docker ps -aq |xargs docker rm
          sudo rm -rf /data/*
          sudo pip3 install ansible
          ansible-galaxy install -f collivier.xtesting
          ansible-galaxy collection install -f -r ~/.ansible/roles/collivier.xtesting/requirements.yml
          ansible-playbook -vv ~/.ansible/roles/collivier.xtesting/tests/{playbook}.yml

- parameter:
    name: xtestingci-slave
    parameters:
      - label:
          name: slave
          default: '{slave}'

- job-template:
    name: 'xtestingci-tests-{playbook}'
    parameters:
      - xtestingci-slave:
          slave: '{slave}'
    builders:
      - xtestingci-tests:
          playbook: '{playbook}'

- project:
    name: xtestingci-tests
    slave: master
    playbook:
      - all
    jobs:
      - 'xtestingci-tests-{playbook}'

- view:
    name: xtestingci
    view-type: list
    columns:
      - status
      - weather
      - job
      - last-success
      - last-failure
      - last-duration
    regex: ^xtestingci-tests-.*$