Compare commits

..

No commits in common. "adef1148e470e5320edf983bc176f5ad8c006c11" and "4e5adba4ba52e63afaab75cce1d1f6461ba5e866" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -308,7 +308,7 @@ jobs:
run: | run: |
mkdir ${{ env.BUNDLE }} mkdir ${{ env.BUNDLE }}
cp out/Release/naive config.json ../LICENSE ../USAGE.txt ${{ env.BUNDLE }} cp out/Release/naive config.json ../LICENSE ../USAGE.txt ${{ env.BUNDLE }}
7z a ${{ env.BUNDLE }}.zip ${{ env.BUNDLE }} 7z a ../${{ env.BUNDLE }}.zip ${{ env.BUNDLE }}
hub release edit -a ${{ env.BUNDLE }}.zip -m "" "${GITHUB_REF##*/}" hub release edit -a ${{ env.BUNDLE }}.zip -m "" "${GITHUB_REF##*/}"
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@ -316,7 +316,7 @@ jobs:
if: ${{ github.event_name == 'release' }} if: ${{ github.event_name == 'release' }}
run: | run: |
mv out/Release/cronet ${{ env.CRONET_BUNDLE }} mv out/Release/cronet ${{ env.CRONET_BUNDLE }}
7z a ${{ env.CRONET_BUNDLE }}.zip ${{ env.CRONET_BUNDLE }} 7z a ../${{ env.CRONET_BUNDLE }}.zip ${{ env.CRONET_BUNDLE }}
hub release edit -a ${{ env.CRONET_BUNDLE }}.zip -m "" "${GITHUB_REF##*/}" hub release edit -a ${{ env.CRONET_BUNDLE }}.zip -m "" "${GITHUB_REF##*/}"
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -200,7 +200,7 @@ if [ "$target_cpu" = 'mipsel' -o "$target_cpu" = 'mips64el' ]; then
elif [ "$target_cpu" = 'arm64' -a "$ARCH" = 'Windows' ]; then elif [ "$target_cpu" = 'arm64' -a "$ARCH" = 'Windows' ]; then
# CGO does not support PIE for windows/arm64. # CGO does not support PIE for windows/arm64.
buildmode_flag= buildmode_flag=
elif [ "$target_cpu" = 'x86' -a "$target_os" != 'android' ]; then elif [ "$target_cpu" = 'x86' -a "$target_os" != '' ]; then
# Segfaults if built with PIE in regular Linux. TODO: Find out why. # Segfaults if built with PIE in regular Linux. TODO: Find out why.
buildmode_flag= buildmode_flag=
fi fi