-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.js
150 lines (134 loc) · 4.2 KB
/
update.js
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/* eslint-disable prettier/prettier */
/* eslint-disable @typescript-eslint/no-var-requires */
const execShPromise = require('exec-sh').promise;
let fs = require('fs');
const projects = [
{ name: 'ISIS3710_202310_S1_E1_Back' },
{ name: 'ISIS3710_202310_S1_E2_Back' },
{ name: 'ISIS3710_202310_S1_E3_Back' },
{ name: 'ISIS3710_202310_S1_E4_Back' },
{ name: 'ISIS3710_202310_S1_E5_Back' },
{ name: 'ISIS3710_202310_S1_E6_Back' },
{ name: 'ISIS3710_202310_S1_E7_Back' },
{ name: 'ISIS3710_202310_S1_E8_Back' },
{ name: 'ISIS3710_202310_S1_E9_Back' },
];
const config = {
organization: 'isis3710-uniandes',
gitKey: 'de5cd571-10da-4034-8ba8-af99beef4b14',
sonarServer: 'sonar-isis2603',
jenkinsServer: 'jenkins-isis2603',
};
const createRepos = async () => {
let out;
try {
for (const project of projects) {
const jenkinsFile = getJenkinsFile(project.name);
const sonarFile = getSonarFile(project.name);
const readmeFile = getReadmeFile(project.name);
fs.writeFileSync('Jenkinsfile', jenkinsFile);
fs.writeFileSync('sonar-project.properties', sonarFile);
fs.writeFileSync('README.md', readmeFile);
let command0 = `git remote rm origin`;
let command1 = `git add .`;
let command2 = "git commit -m Add_initial_files";
let command3 = `hub create -p ${config.organization}/${project.name}`;
let command4 = `git push origin master`;
console.log('Deleting remote');
out = await execShPromise(command0, true);
console.log('Adding files');
out = await execShPromise(command1, true);
console.log('Commiting files');
out = await execShPromise(command2, true);
console.log('Creating repo: ', project.name);
out = await execShPromise(command3, true);
console.log('Push');
out = await execShPromise(command4, true);
}
} catch (e) {
console.log('Error: ', e);
console.log('Stderr: ', e.stderr);
console.log('Stdout: ', e.stdout);
return e;
}
console.log('out: ', out.stdout, out.stderr);
};
createRepos();
function getReadmeFile(repo) {
const content = `# Enlaces
- [Jenkins](http://157.253.238.75:8080/${config.jenkinsServer}/)
- [Sonar](http://157.253.238.75:8080/${config.sonarServer}/)`;
return content;
}
function getSonarFile(repo) {
const content = `sonar.host.url=http://157.253.238.75:8080/${config.sonarServer}/
sonar.projectKey=${repo}:sonar
sonar.projectName=${repo}
sonar.projectVersion=1.0
sonar.sources=src
sonar.test=src
sonar.test.inclusions=**/*.spec.ts
sonar.exclusions=**/*.module.ts, **/utils/**
sonar.javascript.lcov.reportPaths=coverage/lcov.info`;
return content;
}
function getJenkinsFile(repo) {
const content = `pipeline {
agent any
environment {
GIT_REPO = '${repo}'
GIT_CREDENTIAL_ID = '${config.gitKey}'
SONARQUBE_URL = 'http://172.24.100.52:8082/${config.sonarServer}'
}
stages {
stage('Checkout') {
steps {
scmSkip(deleteBuild: true, skipPattern:'.*\\\\[ci-skip\\\\].*')
git branch: 'master',
credentialsId: env.GIT_CREDENTIAL_ID,
url: 'https://github.com/${config.organization}/' + env.GIT_REPO
}
}
stage('Build') {
// Build app
steps {
script {
docker.image('citools-isis2603:latest').inside('-u root') {
sh '''
npm i -s
nest build
'''
}
}
}
}
stage('Test') {
steps {
script {
docker.image('citools-isis2603:latest').inside('-u root') {
sh '''
npm run test:cov
'''
}
}
}
}
stage('Static Analysis') {
// Run static analysis
steps {
sh '''
docker run --rm -u root -e SONAR_HOST_URL=\${SONARQUBE_URL} -v \${WORKSPACE}:/usr/src sonarsource/sonar-scanner-cli:4.3
'''
}
}
}
post {
always {
// Clean workspace
cleanWs deleteDirs: true
}
}
}
`;
return content;
}