Skip to content

Commit cf3009d

Browse files
DinoVmeta-codesync[bot]
authored andcommitted
Enable Windows in Github CI
Summary: Enables Windows in our Github CI. Reviewed By: alexmalyshev Differential Revision: D103317854 fbshipit-source-id: a40f00e7d113ebd0a60b080dcf09282107c1092d
1 parent 2428669 commit cf3009d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
- name: Install CinderX
3838
run: uv pip install cinderx --find-links dist --no-index
3939

40-
- name: Check CinderX loads successfully (Linux)
41-
if: runner.os == 'Linux'
40+
- name: Check CinderX loads successfully (Linux/Windows)
41+
if: runner.os == 'Linux' || runner.os == 'Windows'
4242
run: |
4343
uv run python -c 'import cinderx ; print(cinderx.get_import_error()) ; assert cinderx.is_initialized()'
4444
@@ -51,11 +51,11 @@ jobs:
5151
uv run python -c 'import cinderx ; print("import_error:", cinderx.get_import_error()) ; print("initialized:", cinderx.is_initialized())'
5252
5353
- name: Install pytest
54-
if: runner.os == 'Linux'
54+
if: runner.os == 'Linux' || runner.os == 'Windows'
5555
run: uv pip install pytest
5656

5757
- name: Run Tests
58-
if: runner.os == 'Linux'
58+
if: runner.os == 'Linux' || runner.os == 'Windows'
5959
run: uv run pytest cinderx/PythonLib/test_cinderx/ --ignore=cinderx/PythonLib/test_cinderx/test_cpython_overrides/test__opcode.py
6060

6161
build_wheels:

0 commit comments

Comments
 (0)