ci: remove workaround re: setting RUSTFLAGS env var in Windows

It's no longer necessary owing to changes made yesterday by the MSYS2
maintainers/contributors.
This commit is contained in:
Michael Bradley, Jr 2021-06-29 17:43:06 -05:00 committed by Michael Bradley
parent 0340fc0ea5
commit dfe472953a
2 changed files with 0 additions and 10 deletions

View File

@ -91,8 +91,6 @@ jobs:
key: ${{ matrix.platform.os }}-${{ steps.calc-cache-key.outputs.hash }}-release-${{ matrix.release }}
- name: Install and build dependencies
# setting env var RUSTFLAGS in Windows is a workaround for:
# https://github.com/msys2/MINGW-packages/issues/9010
run: |
make \
-j${NPROC} \
@ -101,9 +99,6 @@ jobs:
RLN_STATIC=${{ matrix.rln }} \
V=1 \
update
if [[ ${{ matrix.platform.os }} = windows ]]; then
export RUSTFLAGS="-Clink-self-contained=no"
fi
make \
-j${NPROC} \
NIMFLAGS="--parallelBuild:${NPROC}" \

View File

@ -93,13 +93,8 @@ jobs:
key: ${{ matrix.platform.os }}-${{ steps.calc-cache-key.outputs.hash }}-sqlcipher_static-${{ matrix.sqlcipher }}
- name: Install and build dependencies
# setting env var RUSTFLAGS in Windows is a workaround for:
# https://github.com/msys2/MINGW-packages/issues/9010
run: |
make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" V=1 update
if [[ ${{ matrix.platform.os }} = windows ]]; then
export RUSTFLAGS="-Clink-self-contained=no"
fi
make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" V=1 deps
- name: Build and run tests