Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dimdi-y committed Dec 19, 2024
1 parent e924e37 commit 647d714
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/scripts/binary_populate_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ PIP_UPLOAD_FOLDER='nightly/'
# We put this here so that OVERRIDE_PACKAGE_VERSION below can read from it
export DATE="$(date -u +%Y%m%d)"

if [[-z $PYTORCH_BUILD_VERSION ]]; then
if [[ -z "$PYTORCH_BUILD_VERSION" ]]; then
BASE_BUILD_VERSION="$(cat ${PYTORCH_ROOT}/version.txt|cut -da -f1).dev${DATE}"

# Change BASE_BUILD_VERSION to git tag when on a git tag
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/poolside-nightly-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ jobs:

- name: Build PyTorch binary
run: |
echo "Building torch==$PYTORCH_BUILD_VERSION"
set -x
mkdir -p ${RUNNER_TEMP}/artifacts
Expand Down

0 comments on commit 647d714

Please sign in to comment.