triple tap windows with mkdir -p
Some checks failed
Build Wownero LWS / build-macos (push) Successful in 1m42s
Build Wownero LWS / build-linux (push) Successful in 1m54s
Build Wownero LWS / build-windows (push) Failing after 1m0s

This commit is contained in:
2026-01-05 12:21:05 -08:00
parent 578c5560b3
commit 8594c23cb6

View File

@@ -121,7 +121,7 @@ jobs:
rm -rf external/monero/contrib/depends/built/x86_64-w64-mingw32/boost
rm -rf external/monero/contrib/depends/work/download/boost*
# --- 2. UPGRADE BOOST (The Triple-Tap Fix) ---
# --- 2. UPGRADE BOOST (Triple-Tap Fix with MKDIR) ---
- name: Upgrade Boost Version to 1.80.0
run: |
echo "Forcing depends to use Boost 1.80.0..."
@@ -139,11 +139,11 @@ jobs:
# A. Try to delete the line
sed -i '/patches/d' $BOOST_MK
# B. Append an empty variable definition to the end (Overrides anything above)
# B. Append an empty variable definition
echo "package_patches=" >> $BOOST_MK
# C. TRICK: Overwrite the actual patch file with an empty file
# If the build system insists on finding this file, we give it a blank one.
# C. TRICK: Create the folder FIRST, then the fake file
mkdir -p external/monero/contrib/depends/packages/boost
echo "" > external/monero/contrib/depends/packages/boost/fix_aroptions.patch
# Debug