Skip to content

Commit 50021a4

Browse files
committed
Added build action for ojph_stream_expand.
1 parent 7b7f910 commit 50021a4

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/ccp-workflow.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,29 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919
- name: cmake
20-
run: cmake ..
20+
run: cmake -DOJPH_BUILD_STREAM_EXPAND=ON ..
2121
working-directory: build
2222
- name: build
2323
run: make
2424
working-directory: build
2525

26+
build_windows:
27+
strategy:
28+
matrix:
29+
include: [
30+
{ system: Windows, runner: windows-latest },
31+
]
32+
name: ${{ matrix.system }} Build
33+
runs-on: ${{ matrix.runner }}
34+
steps:
35+
- uses: actions/checkout@v4
36+
- name: cmake
37+
run: cmake -G "Visual Studio 17 2022" -A x64 -DOJPH_ENABLE_TIFF_SUPPORT=OFF -DOJPH_BUILD_STREAM_EXPAND=ON ..
38+
working-directory: build
39+
- name: build
40+
run: cmake --build . --config Release
41+
working-directory: build
42+
2643
test:
2744
strategy:
2845
matrix:

0 commit comments

Comments
 (0)