Merge branch 'master' of https://git.code.tencent.com/joylink-common/official-website
This commit is contained in:
commit
2f470baa3f
29
Jenkinsfile-prd
Normal file
29
Jenkinsfile-prd
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
pipeline {
|
||||||
|
agent {
|
||||||
|
node {
|
||||||
|
label 'master'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stages {
|
||||||
|
stage('Package') {
|
||||||
|
tools {
|
||||||
|
nodejs 'nodejs-10'
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
sh 'npm update'
|
||||||
|
sh 'npm install'
|
||||||
|
sh 'npm run build'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Publish') {
|
||||||
|
steps {
|
||||||
|
sh 'mkdir -p /usr/local/joylink/official-website'
|
||||||
|
sh 'rm -rf /usr/local/joylink/official-website/*'
|
||||||
|
sh 'cp -rf ./dist/* /usr/local/joylink/official-website/'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
29
Jenkinsfile-test
Normal file
29
Jenkinsfile-test
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
pipeline {
|
||||||
|
agent {
|
||||||
|
node {
|
||||||
|
label 'master'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stages {
|
||||||
|
stage('Package') {
|
||||||
|
tools {
|
||||||
|
nodejs 'nodejs-10'
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
sh 'npm update'
|
||||||
|
sh 'npm install'
|
||||||
|
sh 'npm run build'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Publish') {
|
||||||
|
steps {
|
||||||
|
sh 'mkdir -p /usr/local/joylink/official-website'
|
||||||
|
sh 'rm -rf /usr/local/joylink/official-website/*'
|
||||||
|
sh 'cp -rf ./dist/* /usr/local/joylink/official-website/'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -9,8 +9,8 @@ const name = defaultSettings.title;
|
|||||||
const port = 9520;
|
const port = 9520;
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
publicPath: "/official-website",
|
publicPath: "/",
|
||||||
outputDir: "dist/official-website",
|
outputDir: "dist",
|
||||||
assetsDir: "static",
|
assetsDir: "static",
|
||||||
lintOnSave: false,
|
lintOnSave: false,
|
||||||
productionSourceMap: false,
|
productionSourceMap: false,
|
||||||
|
Reference in New Issue
Block a user