We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b8c1d3 commit 24511a3Copy full SHA for 24511a3
.github/workflows/build.yml
@@ -11,7 +11,7 @@ jobs:
11
strategy:
12
matrix:
13
# macos-13 is x86_64, and macos-14 is arm64
14
- os: [ubuntu-22.04, macos-13, macos-14]
+ os: [ubuntu-22.04, windows-2022, macos-13, macos-14]
15
fail-fast: false
16
runs-on: ${{ matrix.os }}
17
name: build.py ${{ matrix.os }}
@@ -25,12 +25,13 @@ jobs:
25
- uses: carlosperate/arm-none-eabi-gcc-action@v1
26
with:
27
release: 10.3-2021.10
28
- - name: Install CMake v3.22 via PyPI
29
- run: python -m pip install cmake==3.28.3
+ - name: Install CMake v3.22 & Ninja v1.11 via PyPI
+ run: python -m pip install cmake==3.28.3 ninja==1.11.1.1
30
- name: Check Versions
31
run: |
32
arm-none-eabi-gcc --version
33
cmake --version
34
+ ninja --versio
35
python --version
36
uname -a
37
- name: Build mpy-cross
0 commit comments