Adds Jenkinsfile
Run architectural test suite on backends / Build ISS, Setup TGC-COMPLIANCE, Run tests on backends (push) Failing after 6m37s Details

This commit is contained in:
Eyck-Alexander Jentzsch 2024-05-22 14:05:29 +02:00
parent ff649a9d97
commit 73c9934708
1 changed files with 43 additions and 0 deletions

43
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,43 @@
void checkout_project(String repoUrl, String branch = 'develop') {
checkout([
$class: 'GitSCM',
branches: [
[name: "*/${branch}"]
],
extensions: [
[$class: 'CleanBeforeCheckout'],
[$class: 'SubmoduleOption', disableSubmodules: false, parentCredentials: true, recursiveSubmodules: true, reference: '', trackingSubmodules: false]
],
submoduleCfg: [],
userRemoteConfigs: [
[credentialsId: 'gitea-jenkins', url: repoUrl]
]
])
}
pipeline {
agent {
docker {
image 'git.minres.com/tooling/riscof_sail:latest'
}
}
stages {
stage("Checkout Repositories"){
steps {
checkout_project("https://git.minres.com/TGFS/TGC-ISS.git")
checkout_project("https://git.minres.com/TGFS/TGC-COMPLIANCE.git", "master")
}
}
stage("Build TGC-ISS"){
steps {
sh 'pwd'
sh 'ls -la'
sh 'ls -la ..'
}
}
}
}