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 |
Tags
- git
- 17837
- service
- insert
- 데이터
- 데이터전달
- IntelliJ
- 16197
- 알고리즘
- intent
- mysql
- 두 동전
- github
- 프로그래머스
- spring
- goland
- data
- vscode
- activity
- Java
- 제어반전
- 큐빙
- Algorithm
- Jenknis
- 안드로이드
- ubuntu
- 백준
- Android
- 단축키
- broadcastreceiver
Archives
- Today
- Total
목록Jenknis (1)
해보자

Jenkinsfile pipeline { agent any stages { stage ('Hello world 1') { steps { echo "Hello world!!" } post { always { echo 'POST: Hello world 1' } } } stage ('Error test') { steps { error "ERROR!!!!" echo "Error after..." } post { always { echo 'POST: Hello world 1' } } } stage ('Hello world 2') { steps { echo "Hello world!! 2" } post { always { echo 'POST: Hello world 2' } } } } post { always { ec..
CICD
2022. 8. 23. 17:49