diff --git a/Jenkinsfile b/Jenkinsfile index 363eda9..0d2964d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -84,7 +84,7 @@ pipeline { agent {docker { image 'centos8' } } stages { 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: test') { steps { test_project() }} } diff --git a/tests/io-redirector/CMakeLists.txt b/tests/io-redirector/CMakeLists.txt index 56eb13a..baf9383 100644 --- a/tests/io-redirector/CMakeLists.txt +++ b/tests/io-redirector/CMakeLists.txt @@ -2,6 +2,6 @@ cmake_minimum_required(VERSION 3.12) add_executable (io_redirector 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) \ No newline at end of file