Skip to content

Commit 481ebc4

Browse files
justinsnappclaude
andcommitted
Fix CI: pin mingw-std-threads to v1.0.0 for Ubuntu 22.04 mingw compat
Latest HEAD of mingw-std-threads requires C++20 <latch> which the mingw cross-compiler on Ubuntu 22.04 doesn't provide. Pin to v1.0.0. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7eb4732 commit 481ebc4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ jobs:
5454
git config --file .gitmodules --remove-section submodule.mingw-std-threads 2>/dev/null || true
5555
git rm --cached mingw-std-threads 2>/dev/null || true
5656
rm -rf mingw-std-threads
57-
git clone --depth=1 https://github.com/meganz/mingw-std-threads.git mingw-std-threads
57+
git clone https://github.com/meganz/mingw-std-threads.git mingw-std-threads
58+
cd mingw-std-threads && git checkout v1.0.0 && cd ..
5859
- name: Build libacfutils dependencies
5960
if: steps.cache.outputs.cache-hit != 'true'
6061
run: |

0 commit comments

Comments
 (0)