summaryrefslogtreecommitdiffstats
path: root/jjb/integration/integration-docker.yaml
blob: aeb50e9f96d84bdcc109fb21c2754ee8cbe16003 (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
54
55
56
57
58
59
60
61
---
- project:
    name: integration-docker
    project-name: 'integration'
    jobs:
      - integration-docker-merge
      - integration-docker-verify
    project: 'integration'
    stream:
      - 'master':
          branch: 'master'
    subproject:
      - 'sniroemulator':
          pom: 'test/mocks/sniroemulator/pom.xml'
          pattern: 'test/mocks/sniroemulator/**'
      - 'mass-pnf-sim':
          pom: 'test/mocks/mass-pnf-sim/pnf-sim-lightweight/pom.xml'
          pattern: 'test/mocks/mass-pnf-sim/**'
          mvn-goals: 'clean package docker:build -Dcheckstyle.skip'
          PNF_INSTANCES: 1
          post-docker-verify-script: |
              #!/bin/bash
              set -ex # Fail build if any setup step fails
              cd $WORKSPACE/test/mocks/mass-pnf-sim
              ./mass-pnf-sim.py bootstrap --count {PNF_INSTANCES} --urlves http://127.0.0.1:10000/eventListener/v7 --ipfileserver 127.0.0.1 --typefileserver sftp --ipstart 10.11.0.16
              ./mass-pnf-sim.py start --count {PNF_INSTANCES}
              ./mass-pnf-sim.py trigger --count {PNF_INSTANCES}
              ./mass-pnf-sim.py status --count {PNF_INSTANCES}
              ./mass-pnf-sim.py stop --count {PNF_INSTANCES}
              ./mass-pnf-sim.py clean
    mvn-settings: 'integration-settings'
    files: '**'
    archive-artifacts: ''

- project:
    name: integration-netconf-pnp-simulator
    project: integration
    stream:
      - 'master':
          branch: 'master'
    # Required by verifier
    mvn-settings: 'integration-settings'
    project-name: 'integration-netconf-pnp-simulator'
    gerrit_trigger_file_paths:
      - compare-type: ANT
        pattern: 'test/mocks/netconf-pnp-simulator/engine/**'
    docker-name: 'onap/integration/simulators/netconf-pnp-simulator'
    docker-root: test/mocks/netconf-pnp-simulator/engine
    container-tag-method: yaml-file
    post_docker_build_script: |
        #!/bin/bash
        set -eux
        cd "$DOCKER_ROOT"
        # To simplify the references inside tox.ini and tests/settings.py
        docker tag "$CONTAINER_PUSH_REGISTRY/$DOCKER_NAME:$DOCKER_IMAGE_TAG" netconf-pnp-simulator:latest
        tox
    build-node: centos7-docker-8c-8g
    build-timeout: 20
    jobs:
      - gerrit-docker-verify
      - gerrit-docker-merge