-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJenkinsfile
81 lines (79 loc) · 2.17 KB
/
Jenkinsfile
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
pipeline {
agent {
node {
label 'agent1'
}
}
triggers {
pollSCM '*/5 * * * *'
}
stages {
stage('Test') {
steps {
echo "Testing.."
bat """
"""
}
}
stage('Stop Server') {
steps {
echo 'Stopping server....'
bat """
@echo off
REM Check if the service is running on port 3930
netstat -ano | findstr ":3930.*LISTENING" >nul
if %errorlevel% equ 0 (
REM If service is running, find its PID and kill the process
for /f "tokens=5" %%a in ('netstat -ano ^| findstr ":3930.*LISTENING"') do (
echo Service running on port 3930 with PID: %%a
taskkill /F /PID %%a >nul
echo Service on port 3930 has been stopped.
)
) else (
echo No service found running on port 3930.
)
REM Exit with success code 0
exit /b 0
"""
}
}
stage('Deploy Api') {
steps {
echo 'Deliver....'
bat """
echo "doing delivery stuff.."
xcopy *.* "C:\\Sites\\chat_ai_api" /s /e /y
"""
}
}
stage('Deploy Web') {
steps {
echo 'Deliver....'
bat """
echo "doing delivery stuff.."
cd docs
xcopy *.* "C:\\Sites\\chat_ai_web" /s /e /y
"""
}
}
stage('Dependencies') {
steps {
echo "Building.."
bat """
cd "C:\\Sites\\chat_ai_api"
npm install
"""
}
}
}
post {
success {
echo "running.."
bat """
REM cd "site-path"
REM node app.js
exit /b 0
"""
}
}
}