init commit - move from separate git repos

This commit is contained in:
2024-04-07 12:32:23 -05:00
commit fee7ea5678
176 changed files with 10129 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
pipeline {
agent any
stages {
stage('Start API') {
steps {
sh '''docker image prune -f
docker build --no-cache -t fbla-api .
docker-compose down
docker-compose up -d'''
}
}
stage('Run Tests') {
steps {
sh '''dart pub install
dart run ./test/fbla_api_test.dart'''
}
}
}
}