From 186ae0be91a0248c6c6d65ae7189148691d8b237 Mon Sep 17 00:00:00 2001 From: Zhang Jie Date: Fri, 29 Mar 2024 07:01:55 +0000 Subject: [PATCH] add windows action --- .github/workflows/windows.yml | 44 +++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/windows.yml diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml new file mode 100644 index 0000000..63273fb --- /dev/null +++ b/.github/workflows/windows.yml @@ -0,0 +1,44 @@ +name: CMake + +on: + push: + branches: [ test-windows ] + pull_request: + branches: [ test-windows ] + +env: + # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) + BUILD_TYPE: Release + +jobs: + build: + # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. + # You can convert this to a matrix build if you need cross-platform coverage. + # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix + strategy: + matrix: + os: [ windows-latest ] + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v4 + - name: Download GmSSL + run: | + git clone https://github.com/guanzhi/GmSSL.git + cd GmSSL && git checkout tags/v3.1.1 + + - name: Configure CMake + # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. + # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type + run: cd GmSSL && cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + + - name: Build + # Build your program with the given configuration + run: cd GmSSL && cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + + - name: Test + working-directory: ${{github.workspace}}/build + # Execute tests defined by the CMake configuration. + # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail + run: cd GmSSL && ctest --rerun-failed --output-on-failure -C ${{env.BUILD_TYPE}} +