We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fa562d commit 4ef82e9Copy full SHA for 4ef82e9
1 file changed
.github/actions/mise-project-setup/init.sh
@@ -104,11 +104,13 @@ echo "::group::Outputs from init"
104
if [[ "${CACHE_MODE}" = "prepare" ]]; then
105
echo "aoc-main"
106
# Use of mise tools in CI on different OSes for solvers:
107
- # - C++: Ubuntu
+ # - C++: macOS and Ubuntu
108
# - Python: Ubuntu
109
- # - Rust: Ubuntu, Windows and macOS
110
- if [[ "${RUNNER_OS}" = "Linux" ]]; then
+ # - Rust: macOS, Ubuntu and Windows
+ if [[ "${RUNNER_OS}" = "macOS" ]] || [[ "${RUNNER_OS}" = "Linux" ]]; then
111
echo "solvers/cpp"
112
+ fi
113
+ if [[ "${RUNNER_OS}" = "Linux" ]]; then
114
echo "solvers/python"
115
fi
116
echo "solvers/rust"
0 commit comments