-
Notifications
You must be signed in to change notification settings - Fork 38
42 lines (30 loc) · 1.34 KB
/
windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright (c) 2024 - 2025 Kevin G. Schlosser
name: Windows build
on:
push:
pull_request:
jobs:
build:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: Cyberboss/install-winget@v1
- uses: carlosperate/[email protected]
with:
release: '9-2019-q4' # The arm-none-eabi-gcc release to use.
# - uses: actions/setup-python@v5
# with:
# python-version: '3.10'
# - name: Install Dependencies
# run: |
# winget install --accept-source-agreements --accept-package-agreements ezwinports.make
# python3 -m pip install pyMSVC requests
# - name: Build ESP32 port
# run: python3 make.py esp32 submodules clean mpy_cross BOARD=ESP32_GENERIC_S3 BOARD_VARIANT=SPIRAM_OCT DISPLAY=rgb_display INDEV=gt911
# - name: Build STM32 port
# run: python3 make.py stm32 submodules clean mpy_cross BOARD=STM32H7B3I_DK DISPLAY=rgb_display INDEV=gt911
# - name: Build Raspberry Pi PICO port
# run: python3 make.py rp2 submodules clean mpy_cross BOARD=RPI_PICO DISPLAY=rgb_display INDEV=gt911
# - name: Build Windows port
# run: python3 make.py windows submodules clean mpy_cross DISPLAY=sdl_display INDEV=sdl_pointer