cleanup workflow #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-conan1 | |
on: | |
push: | |
jobs: | |
conan1: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
sudo apt update | |
sudo apt install -y gcc-12 cmake make ninja-build libncurses5 gcc | |
- run: sudo apt install clang-13 libc++abi-12-dev libc++-12-dev libstdc++-12-dev lld-13 llvm-13-dev llvm-13-linker-tools llvm-13 libllvm13 llvm clang libunwind-12 libunwind-dev | |
- run: pip3 install "conan<2" | |
- run: conan profile new dummy | |
- run: | | |
cd recipes/cmaes/all | |
cp profiles/clang-libc++-release ~/.conan/profiles | |
conan create --profile clang-libc++-release . 0.10.0@ | |