From 637f3d7b33c3de3bb17c7ab64aa4e87f9c46a8f1 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Tue, 8 Feb 2022 19:16:32 +0900 Subject: [PATCH] Windows build on GitHub Actions --- .github/workflows/build.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d6c3f261..6dbe4352 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -182,3 +182,17 @@ jobs: run: | cd $NGHTTP2_CMAKE_DIR/integration-tests make itprep it + + build-windows: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + - name: Configure cmake + run: | + mkdir build + cd build + cmake .. + - name: Build nghttp2 + run: | + cmake --build build