We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbdcd84 commit da80308Copy full SHA for da80308
.github/workflows/test.yml
@@ -68,8 +68,8 @@ jobs:
68
RUBY_VERSION_OUTPUT=$(ruby -e 'print RUBY_VERSION')
69
# For mingw builds, ext.platform from Rake::ExtensionTask usually becomes something like x64-mingw-ucrt
70
# We'll use the platform string directly from the error message if it matches RUBY_VERSION_OUTPUT
71
- SO_DIR_PLATFORM="x64-mingw-ucrt"
72
- SO_PATH="${GITHUB_WORKSPACE}/lib/${RUBY_VERSION_OUTPUT}/${SO_DIR_PLATFORM}/date_core.so"
+ SO_PATH=("${GITHUB_WORKSPACE}/lib/${RUBY_VERSION_OUTPUT}"/*/date_core.so)
+ SO_PATH="${SO_PATH[0]}"
73
74
echo "Checking for .so file at: $SO_PATH"
75
if [ ! -f "$SO_PATH" ]; then
0 commit comments