From 6a721ac2c13bec9e6b0710b9a1542f10f49ef7ed Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Fri, 28 Oct 2022 09:25:08 -0400 Subject: [PATCH] [no ci] --- .github/workflows/build.yml | 25 ++++--------------------- 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aea61adc..ca1a4889 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -396,20 +396,14 @@ jobs: - name: Install pip requirements run: | if [[ "${RUNNER_OS}" == "macOS" ]]; then - for package in cryptography; do - "${PYTHON}" -m pip install --upgrade cffi ${PIP_ARGS} - "${PYTHON}" -m pip download --only-binary :all: \ + "${PYTHON}" -m pip install --upgrade cffi ${PIP_ARGS} + "${PYTHON}" -m pip download --only-binary :all: \ --dest . \ --no-cache \ --no-deps \ --platform macosx_10_15_universal2 \ - $package - "${PYTHON}" -m pip install --force-reinstall --no-deps $package*.whl - done - find $PYTHON_INSTALL_PATH/lib/python3.10/site-packages -type f -name "*.so" -exec du -sh "{}" \; - else - "${PYTHON}" -m pip install --upgrade --no-binary=:all: cffi - "${PYTHON}" -m pip install --upgrade cryptography + cryptography + "${PYTHON}" -m pip install --force-reinstall --no-deps cryptography*.whl fi "${PYTHON}" -m pip install --upgrade -r requirements.txt ${PIP_ARGS} "${PYTHON}" -m pip list @@ -697,17 +691,6 @@ jobs: #echo "using delegated admin service account" #$gam print users - # - name: Upload to Google Drive, build only. - # if: github.event_name == 'push' && matrix.goal != 'test' - # run: | - # ls gam-$GAMVERSION-* - # for gamfile in gam-$GAMVERSION-*; do - # echo "Uploading file ${gamfile} to Google Drive..." - # fileid=$($gam user $gam_user add drivefile localfile $gamfile drivefilename $GAMVERSION-${GITHUB_SHA:0:7}-$gamfile parentid 1N2zbO33qzUQFsGM49-m9AQC1ijzd_ru1 returnidonly) - # echo "file uploaded as ${fileid}, setting ACL..." - # $gam user $gam_user add drivefileacl $fileid anyone role reader withlink - # done - - name: Archive production artifacts uses: actions/upload-artifact@v3 if: (github.event_name == 'push' || github.event_name == 'schedule') && matrix.goal != 'test'