Windows Build #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows | |
run-name: Windows Build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
# cache: 'pip' | |
- name: Set up MSVC | |
uses: ilammy/msvc-dev-cmd@v1 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pyside6 | |
pip install pyocd | |
pip install nuitka | |
- name: Build MCUProg | |
run: | | |
echo Yes |python -m nuitka --main=MCUProg.py | |