aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/Jenkinsfile
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-07-26 15:20:41 +0800
committercrupest <crupest@outlook.com>2020-07-26 15:20:41 +0800
commitb5db8c49bd9a14bb7dd1b2c5912b7d84254cf09c (patch)
treea56398799ccc278a44fc28f4743d18bdf5e7c66e /Timeline/ClientApp/Jenkinsfile
parent100ae9db906489fd11b92c3ac606ef9ff1f84abd (diff)
downloadtimeline-b5db8c49bd9a14bb7dd1b2c5912b7d84254cf09c.tar.gz
timeline-b5db8c49bd9a14bb7dd1b2c5912b7d84254cf09c.tar.bz2
timeline-b5db8c49bd9a14bb7dd1b2c5912b7d84254cf09c.zip
Remove jenkins files.
Diffstat (limited to 'Timeline/ClientApp/Jenkinsfile')
-rw-r--r--Timeline/ClientApp/Jenkinsfile45
1 files changed, 0 insertions, 45 deletions
diff --git a/Timeline/ClientApp/Jenkinsfile b/Timeline/ClientApp/Jenkinsfile
deleted file mode 100644
index 04ad7d75..00000000
--- a/Timeline/ClientApp/Jenkinsfile
+++ /dev/null
@@ -1,45 +0,0 @@
-pipeline {
- agent {
- docker {
- reuseNode true
- registryUrl 'https://coding-public-docker.pkg.coding.net'
- image 'public/docker/nodejs:14'
- }
-
- }
- stages {
- stage('检出') {
- steps {
- checkout([
- $class: 'GitSCM',
- branches: [[name: env.GIT_BUILD_REF]],
- userRemoteConfigs: [[
- url: env.GIT_REPO_URL,
- credentialsId: env.CREDENTIALS_ID
- ]]])
- }
- }
- stage('安装依赖') {
- steps {
- sh 'yarn'
- }
- }
- stage('构建和Lint') {
- parallel {
- stage('构建') {
- steps {
- sh 'yarn build'
- }
- }
- stage('Lint') {
- steps {
- sh 'yarn lint'
- }
- }
- }
- }
- }
- environment {
- YARN_NPM_REGISTRY_SERVER = 'https://registry.npm.taobao.org'
- }
- } \ No newline at end of file