We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ca0ea7 commit 020e38aCopy full SHA for 020e38a
run-conan.sh
@@ -39,13 +39,15 @@ function debug() {
39
set -exo pipefail
40
41
if [[ "$RUNNER_OS" == "Linux" && "$CI" == "true" ]]; then
42
- # Linux - Local CI
+ echo "Linux - CI"
43
cache_dir=/conan-cache
44
elif [[ "$RUNNER_OS" == "Linux" && -z "$CI" ]]; then
45
# Linux - Plain local build
46
+ echo "Linux - Plain local build"
47
cache_dir=/tmp/conan-cache
48
else
49
# Others
50
+ echo "MacOS or Windows - CI build"
51
cache_dir=$WORKSPACE/conan-cache
52
fi
53
0 commit comments