diff options
author | Nick Vatamaniuc <vatamane@gmail.com> | 2025-06-07 01:12:54 -0400 |
---|---|---|
committer | Nick Vatamaniuc <vatamane@gmail.com> | 2025-06-07 01:37:54 -0400 |
commit | 0f7eadf95ce8509af1df838ed3e83fd68a04e269 (patch) | |
tree | 855ce82890c6b6052169dfee55035f5b5b8f38b5 | |
parent | 00b1d8d0b2d06e540444245b54a8fd86ccf7260b (diff) | |
download | quickjs-0f7eadf95ce8509af1df838ed3e83fd68a04e269.tar.gz quickjs-0f7eadf95ce8509af1df838ed3e83fd68a04e269.zip |
Fix Windows MinGW CI Build
```
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
Error: Process completed with exit code 100.
```
As the error suggests `apt update` seems to fix it
-rw-r--r-- | .github/workflows/ci.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bec4a48..c9ccf62 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -214,6 +214,7 @@ jobs: submodules: true - name: Install MinGW and Wine run: | + sudo apt update sudo apt install -y wine mingw-w64 cp /usr/x86_64-w64-mingw32/lib/libwinpthread-1.dll . - name: Setup Wine |