1
0
mirror of https://github.com/veden/Rampant.git synced 2025-03-17 20:58:35 +02:00

FACTO-234: deleted jenkinsfile and moved visualizer to separate folder

This commit is contained in:
Aaron Veden 2023-02-23 21:01:42 -08:00
parent 1f34aaa725
commit b36794b27f
No known key found for this signature in database
GPG Key ID: FF5990B1C6DD3F84
3 changed files with 0 additions and 23 deletions

23
Jenkinsfile vendored
View File

@ -1,23 +0,0 @@
pipeline {
agent {
docker { image 'alpine' }
}
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}