Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for warnings and errors in the build. #2345

Merged
merged 2 commits into from Mar 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/get_cache_key/action.yml
Expand Up @@ -29,5 +29,5 @@ runs:
SUBMODULE=${{ inputs.submodule }}
SHA=$(git submodule status ${SUBMODULE} | sed -e 's/^-//g' -e 's/^+//g' -e 's/^U//g' | awk '{ print $1 }')
KEY=${SUBMODULE}-${{ inputs.flavor }}_${{ inputs.arch }}_${SHA}_${{ inputs.extras }}
echo "::set-output name=key::${KEY}"
echo "key=${KEY}" >> $GITHUB_OUTPUT
shell: bash
4 changes: 2 additions & 2 deletions .github/actions/numpy_vers/action.yml
Expand Up @@ -100,6 +100,6 @@ runs:
;;
esac

echo "::set-output name=build::${NUMPY_BUILD_VERSION}"
echo "::set-output name=dep::${NUMPY_DEP_VERSION}"
echo "build=${NUMPY_BUILD_VERSION}" >> $GITHUB_OUTPUT
echo "dep=${NUMPY_DEP_VERSION}" >> $GITHUB_OUTPUT
shell: bash
4 changes: 2 additions & 2 deletions .github/actions/win-numpy-vers/action.yml
Expand Up @@ -100,6 +100,6 @@ runs:
;;
esac

echo "::set-output name=build::${NUMPY_BUILD_VERSION}"
echo "::set-output name=dep::${NUMPY_DEP_VERSION}"
echo "build=${NUMPY_BUILD_VERSION}" >> $GITHUB_OUTPUT
echo "dep=${NUMPY_DEP_VERSION}" >> $GITHUB_OUTPUT
shell: msys2 {0}