Skip to content

Commit

Permalink
Merge branch 'dev' into 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Jan 2, 2021
2 parents 9b28cb6 + 95f4251 commit 3466011
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
export TAG_BUILD="${TAG#*-}"
echo "PY_VERSION=${TAG_VERSION}"
echo "BUILD_NUMBER=${TAG_BUILD}"
echo "::set-env name=TAG::${TAG}"
echo "::set-env name=PY_VERSION::${TAG_VERSION}"
echo "::set-env name=BUILD_NUMBER::${TAG_BUILD}"
echo "TAG=${TAG}" >> $GITHUB_ENV
echo "PY_VERSION=${TAG_VERSION}" >> $GITHUB_ENV
echo "BUILD_NUMBER=${TAG_BUILD}" >> $GITHUB_ENV
- name: Update Release Asset to S3
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
Expand Down
17 changes: 10 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
export TAG_BUILD="${TAG#*-}"
echo "PY_VERSION=${TAG_VERSION}"
echo "BUILD_NUMBER=${TAG_BUILD}"
echo "::set-env name=TAG::${TAG}"
echo "::set-env name=PY_VERSION::${TAG_VERSION}"
echo "::set-env name=BUILD_NUMBER::${TAG_BUILD}"
echo "TAG=${TAG}" >> $GITHUB_ENV
echo "PY_VERSION=${TAG_VERSION}" >> $GITHUB_ENV
echo "BUILD_NUMBER=${TAG_BUILD}" >> $GITHUB_ENV
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down Expand Up @@ -62,9 +62,9 @@ jobs:
export TAG_BUILD="${TAG#*-}"
echo "PY_VERSION=${TAG_VERSION}"
echo "BUILD_NUMBER=${TAG_BUILD}"
echo "::set-env name=TAG::${TAG}"
echo "::set-env name=PY_VERSION::${TAG_VERSION}"
echo "::set-env name=BUILD_NUMBER::${TAG_BUILD}"
echo "TAG=${TAG}" >> $GITHUB_ENV
echo "PY_VERSION=${TAG_VERSION}" >> $GITHUB_ENV
echo "BUILD_NUMBER=${TAG_BUILD}" >> $GITHUB_ENV
- name: Build ${{ matrix.target }}
env:
BUILD_NUMBER: ${{ env.BUILD_NUMBER }}
Expand All @@ -83,7 +83,10 @@ jobs:
# 2020-06-24: The Homebrew copy of gettext leaks into the macOS build
# if it is present. Uninstall gettext to make sure that doesn't happen.
sudo brew uninstall --ignore-dependencies gettext
# 2021-01-02: Uninstall curl as well. We need curl to download the
# source bundles, but Homebrew's curl has a runtime dependency on
# gettext. However macOS provides a version of curl that works fine.
brew uninstall --ignore-dependencies gettext curl
# Do the build for the requested target.
make -e ${{ matrix.target }}
Expand Down

0 comments on commit 3466011

Please sign in to comment.