thp-lang.org/Jenkinsfile

29 lines
429 B
Plaintext
Raw Normal View History

2024-10-05 11:52:02 +00:00
pipeline {
2024-11-21 00:58:43 +00:00
agent any
2024-10-05 11:52:02 +00:00
stages {
2024-11-21 01:00:58 +00:00
stage('Build') {
2024-11-21 00:57:05 +00:00
agent {
docker {
image 'node:22'
2024-11-21 00:58:43 +00:00
reuseNode true
2024-11-21 00:57:05 +00:00
}
}
2024-10-05 11:52:02 +00:00
steps {
sh 'npm i -g pnpm'
sh 'pnpm i'
sh 'THP_BINARY=/var/bin/thp pnpm build'
2024-10-05 11:52:02 +00:00
}
}
stage('Deploy') {
steps {
2024-10-05 19:13:43 +00:00
sh 'rm -rf /var/www/thp-lang.org/*'
2024-10-05 19:12:21 +00:00
sh 'mv -f dist/* /var/www/thp-lang.org/'
sh 'docker-compose down || true'
sh 'docker-compose up -d'
2024-10-05 11:52:02 +00:00
}
}
}
}