CI: Disable daily jobs
[ci-management.git] / jjb / demo / demo.yaml
1 ---
2 - project:
3     name: demo-project-view
4     project-name: demo
5     views:
6       - project-view
7
8 - project:
9     name: demo
10     project-name: "demo"
11     jobs:
12       - "{project-name}-{stream}-verify-java"
13       - "{project-name}-{stream}-merge-java"
14       - gerrit-maven-stage:
15           sign-artifacts: true
16           build-node: centos8-docker-4c-4g
17           maven-versions-plugin: true
18       - "{project-name}-gerrit-release-jobs":
19           build-node: centos7-docker-2c-1g
20
21     project: "demo"
22     stream:
23       - "master":
24           branch: "master"
25     mvn-settings: "demo-settings"
26     files: "**"
27     archive-artifacts: ""
28
29 - project:
30     name: demo-sonar
31     jobs:
32       - gerrit-maven-sonar
33     sonarcloud: true
34     sonarcloud-project-organization: "{sonarcloud_project_organization}"
35     sonarcloud-project-key: "{sonarcloud_project_organization}_{project-name}"
36     sonar-mvn-goal: "{sonar_mvn_goal}"
37     build-node: ubuntu1804-builder-4c-4g
38     project: "demo"
39     project-name: "demo"
40     branch: "master"
41     mvn-settings: "demo-settings"
42     mvn-goals: "clean install"
43     mvn-opts: "-Xmx1024m -XX:MaxPermSize=256m"
44
45 - project:
46     name: demo-linters
47     project: "demo"
48     project-name: "demo"
49     python-version: python3
50     jobs:
51       - integration-linters
52     subproject:
53       - "yaml":
54           tox-dir: "."
55           tox-envs: "yaml"
56           pattern: "**/*.yaml"
57       - "yml":
58           tox-dir: "."
59           tox-envs: "yaml"
60           pattern: "**/*.yml"
61       - "json":
62           tox-dir: "."
63           tox-envs: "json"
64           pattern: "**/*.json"
65       - "python":
66           tox-dir: "."
67           tox-envs: "py"
68           pattern: "**/*.py"
69     stream:
70       - "master":
71           branch: "master"