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.

[ci] trigger build

+4 -4
+1 -1
.github/workflows/build-windows-x64.yml
··· 71 71 DEPS_CACHE_WIN=$(cygpath -m "${{ runner.temp }}/deps-cache") 72 72 export PATH="/c/Users/$USER/.cargo/bin:$PATH" 73 73 export PKG_CONFIG_PATH="$DEPS_CACHE/lib/pkgconfig:$PKG_CONFIG_PATH" 74 - meson setup build -Dc_std=gnu2x -Dbuild_timestamp=${{ inputs.build_timestamp }} -Dcmake_prefix_path="$DEPS_CACHE_WIN" && meson compile -C build 74 + meson setup build -Dc_std=gnu2x -Dbuild_timestamp=${{ inputs.build_timestamp }} -Ddeps_prefix_cmake="$DEPS_CACHE_WIN" && meson compile -C build 75 75 - uses: actions/upload-artifact@v4 76 76 with: 77 77 name: ant-windows-x64
+1 -1
.github/workflows/build.yml
··· 15 15 if: | 16 16 github.event_name == 'workflow_dispatch' || 17 17 github.event_name == 'pull_request' || 18 - (github.event_name == 'push' && contains(github.event.head_commit.message, '[ci] run build')) 18 + (github.event_name == 'push' && contains(github.event.head_commit.message, '[ci] trigger build')) 19 19 outputs: 20 20 timestamp: ${{ steps.timestamp.outputs.value }} 21 21 steps:
+1 -1
meson.build
··· 67 67 tlsuv_opts = cmake.subproject_options() 68 68 bdwgc_opts = cmake.subproject_options() 69 69 70 - cmake_prefix = get_option('cmake_prefix_path') 70 + cmake_prefix = get_option('deps_prefix_cmake') 71 71 tlsuv_cmake_defines = { 72 72 'BUILD_TESTING': 'OFF', 73 73 'TLSUV_TLSLIB': tls_lib
+1 -1
meson_options.txt
··· 1 1 option('static_link', type: 'boolean', value: false, description: 'statically link the binary') 2 2 option('build_timestamp', type: 'string', value: '', description: 'build timestamp (defaults to current time if empty)') 3 3 option('tls_library', type: 'combo', choices: ['openssl', 'mbedtls'], value: 'openssl', description: 'TLS library to use') 4 - option('cmake_prefix_path', type: 'string', value: '', description: 'CMAKE_PREFIX_PATH for cmake subprojects') 4 + option('deps_prefix_cmake', type: 'string', value: '', description: 'prefix path for finding dependencies in cmake subprojects')