Commit 8a0d442356c8e1066c16c484e56bc27e64138d09

Authored by Arsisakarn Srilatanart
1 parent fe7a9ca2
Exists in master

add jenkins file

Showing 1 changed file with 21 additions and 0 deletions   Show diff stats
Jenkinsfile 0 → 100644
... ... @@ -0,0 +1,21 @@
  1 +pipeline {
  2 + agent any
  3 +
  4 + stages {
  5 + stage('Build') {
  6 + steps {
  7 + echo 'Building..'
  8 + }
  9 + }
  10 + stage('Test') {
  11 + steps {
  12 + echo 'Testing..'
  13 + }
  14 + }
  15 + stage('Deploy') {
  16 + steps {
  17 + echo 'Deploying....'
  18 + }
  19 + }
  20 + }
  21 +}
0 22 \ No newline at end of file
... ...