libuv/.github/workflows
Lawrence Stubbs 63446206c1 CMake create release package, add GitHub Action CI
This will create an complete installer package for most platforms. Thereafter with `Findlibuv.cmake` in there directory and something like the following in there `CMakeLists.txt`.

```
find_package(libuv QUIET)
if(NOT libuv_FOUND)
    FetchContent_Declare(libuv
        URL https://github.com/libuv/libuv/archive/refs/tags/v1.48.0.zip
        URL_MD5 67d0e50ac6e95de12b09b17ff8baed0f
    )
    FetchContent_MakeAvailable(libuv)
endif()
```
I think https://github.com/libuv/libuv/pull/3194 should just be closed, it just doesn't actually automate any process, which was my initial use case, grab binary without me doing any building.
2024-08-02 11:24:04 -04:00
..
CI-docs.yml ci: bump actions/checkout to 4 (#4474) 2024-07-29 19:54:23 -04:00
CI-release_package.yml CMake create release package, add GitHub Action CI 2024-08-02 11:24:04 -04:00
CI-sample.yml ci: bump actions/checkout to 4 (#4474) 2024-07-29 19:54:23 -04:00
CI-unix.yml ci: bump actions/checkout to 4 (#4474) 2024-07-29 19:54:23 -04:00
CI-win.yml ci: bump actions/checkout to 4 (#4474) 2024-07-29 19:54:23 -04:00
sanitizer.yml ci: bump actions/checkout to 4 (#4474) 2024-07-29 19:54:23 -04:00