Skip to content

Commit 678b19f

Browse files
committed
Windows build
1 parent 444d8db commit 678b19f

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,8 +347,8 @@ jobs:
347347
--variant debug,release
348348
349349
# Checks that we don't have any errors in docs
350-
check-docs:
351-
name: Check docs
350+
linux-check-docs:
351+
name: Linux check docs
352352
defaults:
353353
run:
354354
shell: bash
@@ -366,3 +366,23 @@ jobs:
366366
cd ~/boost-root
367367
./b2 libs/redis/doc
368368
[ -f ~/boost-root/libs/redis/doc/html/index.html ]
369+
370+
windows-check-docs:
371+
name: Windows check docs
372+
defaults:
373+
run:
374+
shell: bash
375+
376+
runs-on: windows-latest
377+
steps:
378+
- name: Checkout
379+
uses: actions/checkout@v4
380+
381+
- name: Setup Boost
382+
run: ./tools/ci.py setup-boost --source-dir=$(pwd)
383+
384+
- name: Build docs
385+
run: |
386+
cd ~/boost-root
387+
./b2 libs/redis/doc
388+
[ -f ~/boost-root/libs/redis/doc/html/index.html ]

0 commit comments

Comments
 (0)