Skip to content

Commit

Permalink
Fix compatibility switch
Browse files Browse the repository at this point in the history
  • Loading branch information
bldrvnlw authored May 15, 2024
1 parent 9b07356 commit a2780b6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/conan_linuxmac_build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ runs:
export CONAN_SKIP_BROKEN_SYMLINKS_CHECK=1
export HOMEBREW_NO_AUTO_UPDATE=1
conan create . HDILib/1.2.6@biovault/stable -pr:h action_build -pr:b action_build -pr compatibility -s build_type=Release -o HDILib:shared=False -o HDILib:fPIC=True
if [[ ${{ inputs.conan-build-os }} == "Macos" ]] && [[ ${{ inputs.conan-compiler-version }} == "14" ]]; then
conan create . HDILib/1.2.6@biovault/stable -pr:h action_build -pr:b action_build -pr compatibility -s build_type=Release -o HDILib:shared=False -o HDILib:fPIC=True
else
conan create . HDILib/1.2.6@biovault/stable -pr:h action_build -pr:b action_build -s build_type=Release -o HDILib:shared=False -o HDILib:fPIC=True
fi
shell: bash
env:
Expand Down

0 comments on commit a2780b6

Please sign in to comment.