Making the jenkins build work

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

View File

@ -37,13 +37,9 @@ pipeline {
stage("Init") {
steps {
sh 'rm -rf srfi-test && git clone https://github.com/srfi-explorations/srfi-test.git'
sh 'mkdir -p reports'
sh 'touch reports/placeholder'
stash name: 'reports', includes: 'reports/*'
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/*'
}
}