Skip to content

Commit

Permalink
Added Windows pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandro Kalatozishvili committed Sep 15, 2024
1 parent b3ee9b0 commit 2234492
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Windows

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2

- name: Install CMake
run: choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' --no-progress

- name: Install dependencies
run: choco install openssl --no-progress

- name: Check versions
run: |
gcc --version
cmake --version
- name: Build with CMake
run: |
mkdir build
cd build
cmake ..
cmake --build .

0 comments on commit 2234492

Please sign in to comment.