link scc-utils
This commit is contained in:
parent
c72b02f99f
commit
0535f2e353
|
@ -84,7 +84,7 @@ pipeline {
|
||||||
agent {docker { image 'centos8' } }
|
agent {docker { image 'centos8' } }
|
||||||
stages {
|
stages {
|
||||||
stage('CentOS8: checkout') { steps { checkout_project() }}
|
stage('CentOS8: checkout') { steps { checkout_project() }}
|
||||||
stage('CentOS8: conan') { steps { setup_conan_ubuntu() }}
|
stage('CentOS8: conan') { steps { setup_conan_centos() }}
|
||||||
stage('CentOS8: build') { steps { build_project() }}
|
stage('CentOS8: build') { steps { build_project() }}
|
||||||
stage('CentOS8: test') { steps { test_project() }}
|
stage('CentOS8: test') { steps { test_project() }}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,6 @@ cmake_minimum_required(VERSION 3.12)
|
||||||
add_executable (io_redirector
|
add_executable (io_redirector
|
||||||
main.cpp
|
main.cpp
|
||||||
)
|
)
|
||||||
target_link_libraries (io_redirector LINK_PUBLIC scc)
|
target_link_libraries (io_redirector LINK_PUBLIC scc-util)
|
||||||
|
|
||||||
add_test(NAME io_redirector_test COMMAND io_redirector)
|
add_test(NAME io_redirector_test COMMAND io_redirector)
|
Loading…
Reference in New Issue