Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 미츠이 스미토모
- terraform
- Selenium
- 페이페이
- local
- 체코
- javascript
- PayPay
- duckdb
- 三井住友カード
- 태국
- codebuild
- PostgreSQL
- vba
- 메르페이
- 뮌헨
- node.js
- Python
- 방콕
- 카마츠루
- 釜つる
- 프라하
- documentdb
- react.js
- typescript
- 아타미
- pyenv
- JenkinsFile
- CSV
- 熱海
Archives
- Today
- Total
도쿄사는 외노자
npm install을 필요할 때에만 돌리기 본문
node_modules가 없거나 package.json이 갱신된 경우에만 npm install을 돌리도록 한다.
1. package.json이 갱신되었는지 판별
def check_package_updated() {
script {
def pretty = ""
def file_paths = sh(script : "git show --pretty=${pretty} --name-only ${env.GIT_COMMIT}", returnStdout: true).trim()
def path_list = file_paths.split('\n')
def is_updated = 0
for (path in path_list) {
if(path.contains("package.json")) {
is_updated=1
}
}
return is_updated
}
}
2. 폴더/파일이 존재하는지 확인
def check_target_exist(target_dir) {
script {
def res = sh(script: "test -d ${target_dir} && echo '1' || echo '0' ", returnStdout: true).trim()
return res
}
}
3. package.json이 갱신되었거나, node_modules가 없는 경우에만 npm install
pipeline {
agent any
tools {nodejs "node"}
stages {
stage('Install') {
steps {
echo ""
echo "+++----- [Pipeline] Install"
echo ""
script {
LAST_STARTED = env.STAGE_NAME
def is_package_updated = check_package_updated()
def is_node_modules_exist = check_target_exist("./node_modules")
if((is_package_updated == 1) || (is_node_modules_exist == 0)){
echo "+--- npm install"
sh "npm install"
} else {
echo "+--- skip npm install command."
}
}
}
}
}
}
'Tech > Jenkins' 카테고리의 다른 글
Git Commit Message와 Author를 취득하여 환경변수로 사용하기 (0) | 2020.01.20 |
---|