Edited Jenkinsfile for CMake CI compile, untested

This commit is contained in:
RigoLigoRLC 2021-06-15 21:40:14 +08:00
parent 479d218651
commit 4cf2f46866

4
Jenkinsfile vendored

@ -9,7 +9,7 @@ pipeline {
}
steps {
sh 'mkdir build && cd build && qmake .. && make '
sh 'mkdir build && cd build && cmake .. && make -j'
archiveArtifacts(artifacts: 'build/src/spark-store', allowEmptyArchive: true, defaultExcludes: true)
}
}
@ -30,4 +30,4 @@ pipeline {
}
}
}
}