Skip to content

Commit

Permalink
Windows port - add mingw build to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vaintroub committed Jul 28, 2023
1 parent bd4eec2 commit 7c128ea
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: minGW-CMake
on: [push, pull_request]

jobs:
build:
strategy:
matrix:
os: [windows-latest]
runs-on: ${{ matrix.os }}
name: Build on ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: configure
run: cmake . -GNinja -DCMAKE_C_COMPILER=gcc
- name: Build
run: cmake --build .
- name: Sysbench version
run: .\src\sysbench.exe --version
- name: Sysbench help
run: .\src\sysbench.exe --help

0 comments on commit 7c128ea

Please sign in to comment.