mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-12-17 17:44:02 -05:00
fix(ci): add custom gcc to path in its own github action step
This commit is contained in:
parent
fa78936aa6
commit
3d85d15671
1 changed files with 7 additions and 1 deletions
|
|
@ -120,7 +120,13 @@ runs:
|
|||
set -euxo pipefail
|
||||
just prepare-windows-build
|
||||
|
||||
# The script should set MINGW_TOOLCHAIN_DIR to the /bin directory of the toolchain
|
||||
- name: Prepare Windows build by adding gcc to PATH
|
||||
if: contains(inputs.target, 'windows')
|
||||
shell: bash
|
||||
run: |
|
||||
set -euxo pipefail
|
||||
|
||||
# The step above should set MINGW_TOOLCHAIN_DIR to the /bin directory of the toolchain
|
||||
if [ -z "${MINGW_TOOLCHAIN_DIR:-}" ]; then
|
||||
echo "ERROR: MINGW_TOOLCHAIN_DIR was not set by the build script." >&2
|
||||
exit 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue