]> source.dussan.org Git - sonarqube.git/blob
019eef78564e1e251be5094dd75f194598eeffc4
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly for gradle: branches enabled 1`] = `
4 <CodeSnippet
5   snippet="sonarqube-check:
6   image: gradle:jre11-slim
7   variables:
8     SONAR_USER_HOME: \\"\${CI_PROJECT_DIR}/.sonar\\"  # Defines the location of the analysis task cache
9     GIT_DEPTH: \\"0\\"  # Tells git to fetch all the branches of the project, required by the analysis task
10   cache:
11     key: \\"\${CI_JOB_NAME}\\"
12     paths:
13       - .sonar/cache
14   script: gradle sonarqube
15   allow_failure: true
16   only:
17     - merge_requests
18     - master
19     - develop
20 "
21 />
22 `;
23
24 exports[`should render correctly for gradle: branches not enabled 1`] = `
25 <CodeSnippet
26   snippet="sonarqube-check:
27   image: gradle:jre11-slim
28   variables:
29     SONAR_USER_HOME: \\"\${CI_PROJECT_DIR}/.sonar\\"  # Defines the location of the analysis task cache
30     GIT_DEPTH: \\"0\\"  # Tells git to fetch all the branches of the project, required by the analysis task
31   cache:
32     key: \\"\${CI_JOB_NAME}\\"
33     paths:
34       - .sonar/cache
35   script: gradle sonarqube
36   allow_failure: true
37   only:
38     - merge_requests
39     - master
40     - develop
41 "
42 />
43 `;
44
45 exports[`should render correctly for maven: branches enabled 1`] = `
46 <CodeSnippet
47   snippet="sonarqube-check:
48   image: maven:3.6.3-jdk-11
49   variables:
50     SONAR_USER_HOME: \\"\${CI_PROJECT_DIR}/.sonar\\"  # Defines the location of the analysis task cache
51     GIT_DEPTH: \\"0\\"  # Tells git to fetch all the branches of the project, required by the analysis task
52   cache:
53     key: \\"\${CI_JOB_NAME}\\"
54     paths:
55       - .sonar/cache
56   script: 
57     - mvn verify sonar:sonar
58   allow_failure: true
59   only:
60     - merge_requests
61     - master
62     - develop
63 "
64 />
65 `;
66
67 exports[`should render correctly for maven: branches not enabled 1`] = `
68 <CodeSnippet
69   snippet="sonarqube-check:
70   image: maven:3.6.3-jdk-11
71   variables:
72     SONAR_USER_HOME: \\"\${CI_PROJECT_DIR}/.sonar\\"  # Defines the location of the analysis task cache
73     GIT_DEPTH: \\"0\\"  # Tells git to fetch all the branches of the project, required by the analysis task
74   cache:
75     key: \\"\${CI_JOB_NAME}\\"
76     paths:
77       - .sonar/cache
78   script: 
79     - mvn verify sonar:sonar
80   allow_failure: true
81   only:
82     - merge_requests
83     - master
84     - develop
85 "
86 />
87 `;
88
89 exports[`should render correctly for other: branches enabled 1`] = `
90 <CodeSnippet
91   snippet="sonarqube-check:
92   image: 
93     name: sonarsource/sonar-scanner-cli:latest
94     entrypoint: [\\"\\"]
95   variables:
96     SONAR_USER_HOME: \\"\${CI_PROJECT_DIR}/.sonar\\"  # Defines the location of the analysis task cache
97     GIT_DEPTH: \\"0\\"  # Tells git to fetch all the branches of the project, required by the analysis task
98   cache:
99     key: \\"\${CI_JOB_NAME}\\"
100     paths:
101       - .sonar/cache
102   script: 
103     - sonar-scanner
104   allow_failure: true
105   only:
106     - merge_requests
107     - master
108     - develop
109 "
110 />
111 `;
112
113 exports[`should render correctly for other: branches not enabled 1`] = `
114 <CodeSnippet
115   snippet="sonarqube-check:
116   image: 
117     name: sonarsource/sonar-scanner-cli:latest
118     entrypoint: [\\"\\"]
119   variables:
120     SONAR_USER_HOME: \\"\${CI_PROJECT_DIR}/.sonar\\"  # Defines the location of the analysis task cache
121     GIT_DEPTH: \\"0\\"  # Tells git to fetch all the branches of the project, required by the analysis task
122   cache:
123     key: \\"\${CI_JOB_NAME}\\"
124     paths:
125       - .sonar/cache
126   script: 
127     - sonar-scanner
128   allow_failure: true
129   only:
130     - merge_requests
131     - master
132     - develop
133 "
134 />
135 `;