MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove caching from windows runner

+1 -10
+1 -10
.github/workflows/build-windows-x64.yml
··· 30 30 mingw-w64-x86_64-libsodium 31 31 mingw-w64-x86_64-nodejs 32 32 git 33 - - name: Cache llhttp 34 - id: cache-llhttp 35 - uses: actions/cache@v4 36 - with: 37 - path: C:/deps-cache 38 - key: deps-windows-x64-llhttp-9.2.1-v1 39 33 - name: Build llhttp 40 - if: steps.cache-llhttp.outputs.cache-hit != 'true' 41 34 run: | 42 35 git clone --depth 1 --branch release/v9.2.1 https://github.com/nodejs/llhttp.git /tmp/llhttp 43 36 cd /tmp/llhttp 44 - cmake -G "MinGW Makefiles" -B build -DCMAKE_INSTALL_PREFIX=/c/deps-cache -DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON 37 + cmake -G "MinGW Makefiles" -B build -DCMAKE_INSTALL_PREFIX=$MINGW_PREFIX -DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON 45 38 cmake --build build 46 39 cmake --install build 47 40 - run: npm ci ··· 54 47 workspaces: src/strip 55 48 - run: | 56 49 export PATH="/c/Users/$USER/.cargo/bin:$PATH" 57 - export PKG_CONFIG_PATH="/c/deps-cache/lib/pkgconfig:$PKG_CONFIG_PATH" 58 - export CMAKE_PREFIX_PATH="/c/deps-cache:$CMAKE_PREFIX_PATH" 59 50 meson setup build -Dc_std=gnu2x -Dbuild_timestamp=${{ inputs.build_timestamp }} && meson compile -C build 60 51 - uses: actions/upload-artifact@v4 61 52 with: