Skip to content

Commit 24511a3

Browse files
ci: Add Windows to the CI builds.
1 parent 8b8c1d3 commit 24511a3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
# macos-13 is x86_64, and macos-14 is arm64
14-
os: [ubuntu-22.04, macos-13, macos-14]
14+
os: [ubuntu-22.04, windows-2022, macos-13, macos-14]
1515
fail-fast: false
1616
runs-on: ${{ matrix.os }}
1717
name: build.py ${{ matrix.os }}
@@ -25,12 +25,13 @@ jobs:
2525
- uses: carlosperate/arm-none-eabi-gcc-action@v1
2626
with:
2727
release: 10.3-2021.10
28-
- name: Install CMake v3.22 via PyPI
29-
run: python -m pip install cmake==3.28.3
28+
- name: Install CMake v3.22 & Ninja v1.11 via PyPI
29+
run: python -m pip install cmake==3.28.3 ninja==1.11.1.1
3030
- name: Check Versions
3131
run: |
3232
arm-none-eabi-gcc --version
3333
cmake --version
34+
ninja --versio
3435
python --version
3536
uname -a
3637
- name: Build mpy-cross

0 commit comments

Comments
 (0)