Skip to content

Commit

Permalink
Add testing with clang-17 on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
Naoki Shibata committed Jul 25, 2024
1 parent 3ce0fcb commit d3e42ae
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,27 @@ pipeline {
'''
}
}

stage('aarch64 macos clang-17') {
agent { label 'macos' }
options { skipDefaultCheckout() }
steps {
cleanWs()
checkout scm
sh '''
eval "$(/opt/homebrew/bin/brew shellenv)"
export CC=/opt/homebrew/opt/llvm@17/bin/clang-17
export CXX=/opt/homebrew/opt/llvm@17/bin/clang++
rm -rf build
mkdir build
cd build
cmake -GNinja -DCMAKE_INSTALL_PREFIX=../../install ..
cmake -E time ninja
export CTEST_OUTPUT_ON_FAILURE=TRUE
ctest -j 8
'''
}
}
}
}
}
Expand Down

0 comments on commit d3e42ae

Please sign in to comment.