Skip to content
Snippets Groups Projects
Commit 75fedd10 authored by Monssaf Toukal's avatar Monssaf Toukal
Browse files

adding test step to pipeline

parent a18951d7
No related branches found
No related tags found
No related merge requests found
// pipeline {
// agent any
// options {
// skipStagesAfterUnstable()
// }
// stages {
// stage('Build') {
// steps {
// sh "./build.sh"
// }
// }
// stage('Test'){
// steps {
// sh 'make check'
// junit 'reports/**/*.xml'
// }
// }
// stage('Deploy') {
pipeline {
agent any
options {
skipStagesAfterUnstable()
}
stages {
stage('Test') {
steps {
julia "./krylov_test.jl"
}
}
// stage('Benchmark'){
// steps {
// sh 'make publish'
// sh "./build.sh"
// }
// }
// }
}
}
\ No newline at end of file
using Pkg
Pkg.activate("./jenkins_env/")
Pkg.add(["PkgBenchmark", "BenchmarkTools", "MatrixDepot", "MatrixMarket", "GitHub", "JSON", "LinearOperators", "LearnBase"])
Pkg.pin(PackageSpec(name="LearnBase", version="0.3"))
Pkg.develop(PackageSpec(path="./"))
Pkg.update()
Pkg.test("Krylov")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment