Jenkinsfile: remove
Pretty sure this is not used anywhere since it is still
referencing cmake stuff.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Ie29501c586f3b6b6c3328f8260f1df47babb2cc1
diff --git a/Jenkinsfile b/Jenkinsfile
deleted file mode 100644
index c4f6c7a..0000000
--- a/Jenkinsfile
+++ /dev/null
@@ -1,26 +0,0 @@
-#!groovy
-
-
-stage 'Debug Build'
- sh '''
- rm -rf build_debug
- mkdir build_debug
- cd build_debug
- cmake .. -DCMAKE_BUILD_TYPE="Debug" -DHUNTER_ENABLED=1 -DEXTERNAL_PROJECT=1
- cmake --build .'''
-
-stage 'Debug Test'
- sh '''cd build_debug
- dbus-launch ctest -V --output-on-failure'''
-
-stage 'Release Build'
- sh '''
- rm -rf build_release
- mkdir build_release
- cd build_release
- cmake .. -DCMAKE_BUILD_TYPE="Release" -DHUNTER_ENABLED=1 -DEXTERNAL_PROJECT=1
- cmake --build .'''
-
-stage 'Release Test'
- sh '''cd build_release
- dbus-launch ctest -V --output-on-failure'''