Skip to content

Commit

Permalink
Try yet another tack to get patchelf to work
Browse files Browse the repository at this point in the history
  • Loading branch information
kyllingstad committed Nov 23, 2023
1 parent 7bdebfd commit 6c4ef58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-conan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
build_type: [Debug, Release]
compiler_version: [9]
compiler_version: [11]
option_proxyfmu: ['proxyfmu=True', 'proxyfmu=False']

steps:
Expand All @@ -30,7 +30,7 @@ jobs:
#!/bin/bash -v
set -eu
conan remote add osp https://osp.jfrog.io/artifactory/api/conan/conan-local --force
conan install /mnt/source --output-folder=build -s build_type=${{ matrix.build_type }} -s:b compiler.cppstd=17 -o "libcosim/*:${{ matrix.option_proxyfmu }}" --build=missing
conan install /mnt/source --output-folder=build -s build_type=${{ matrix.build_type }} -o "libcosim/*:${{ matrix.option_proxyfmu }}" --build=missing
cmake -B build -S /mnt/source -DCMAKE_TOOLCHAIN_FILE=build/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
cmake --build build
cmake --build build --target install
Expand Down

0 comments on commit 6c4ef58

Please sign in to comment.