Skip to content

Commit

Permalink
add windows action
Browse files Browse the repository at this point in the history
  • Loading branch information
j-z10 committed Mar 29, 2024
1 parent ac2ba9b commit a9ee224
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v4
Expand Down
37 changes: 37 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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 -b 'v3.1.1' --depth 1 https://github.com/guanzhi/GmSSL.git
- uses: ilammy/msvc-dev-cmd@v1
- name: build gmssl
run: |
cd Gmssl && mkdir build && cd build
cmake .. -G "NMake Makefiles"
nmake
nmake test
nmake install
./bin/gmssl.exe version

0 comments on commit a9ee224

Please sign in to comment.