Making the jenkins build work

This commit is contained in:
retropikzel 2024-10-05 12:37:57 +03:00
parent cbb4c15deb
commit f069be7c57
1 changed files with 0 additions and 4 deletions

4
Jenkinsfile vendored
View File

@ -37,14 +37,10 @@ pipeline {
stage("Init") { stage("Init") {
steps { steps {
sh 'rm -rf srfi-test && git clone https://github.com/srfi-explorations/srfi-test.git'
sh 'mkdir -p reports' sh 'mkdir -p reports'
sh 'touch reports/placeholder' sh 'touch reports/placeholder'
stash name: 'reports', includes: 'reports/*' stash name: 'reports', includes: 'reports/*'
sh 'echo "<h1>Test results</h1>" > reports/results.html' sh 'echo "<h1>Test results</h1>" > reports/results.html'
sh '(cd srfi-test && make clean build)'
sh 'tree srfi-test'
stash name: 'tests', includes: 'srfi-test/*'
} }
} }