diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..ffd6cc0 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,10 @@ +pipeline { + agent any + stages { + stage('Stage 1') { + steps { + echo 'Hello world!' + } + } + } +} \ No newline at end of file diff --git a/script.sh b/script.sh new file mode 100644 index 0000000..0368399 --- /dev/null +++ b/script.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +cat $1 | wc -l > results.txt