Skip to content

Instantly share code, notes, and snippets.

View gentw's full-sized avatar
🎯
Focusing

Gentian (Gex) Nuka gentw

🎯
Focusing
View GitHub Profile
@gentw
gentw / pipeline-of-installing-and-testing-laravel-application
Created October 17, 2021 03:16 — forked from CarterZhou/pipeline-of-installing-and-testing-laravel-application
This is a sample script of installing and testing a Laravel application using Jenkins pipeline
node {
stage('download') {
git branch: 'master', url: 'github/url/to/your/project'
}
stage('install') {
sh 'composer install'
}
stage('init') {
sh 'cp .env.example .env'
sh 'php artisan key:generate'