Skip to content

Commit

Permalink
ci: Add Windows to the CI builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
microbit-carlos committed Mar 22, 2024
1 parent 5a22c62 commit 5681e8f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
# macos-13 is x86_64, and macos-14 is arm64
os: [ubuntu-22.04, macos-13, macos-14]
os: [ubuntu-22.04, windows-2022, macos-13, macos-14]
fail-fast: false
runs-on: ${{ matrix.os }}
name: build.py ${{ matrix.os }}
Expand All @@ -25,12 +25,13 @@ jobs:
- uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: 10.3-2021.10
- name: Install CMake v3.22 via PyPI
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
- name: Check Versions
run: |
arm-none-eabi-gcc --version
cmake --version
ninja --versio
python --version
uname -a
- name: Build mpy-cross
Expand Down

0 comments on commit 5681e8f

Please sign in to comment.