From da4cd661d4ed92d2a92206a97f3c2392fa72c90d Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Mon, 3 Apr 2023 12:47:46 +0300 Subject: [PATCH] Add job for building firmware on Windows --- .github/workflows/build.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f323acc..db3fb8d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,6 +18,19 @@ jobs: - name: Build firmware run: make + build_windows: + runs-on: windows-latest + steps: + - uses: actions/checkout@v3 + - name: Install Arduino CLI + run: choco install arduino-cli + - name: Install Make + run: choco install make + - name: Install dependencies + run: make dependencies + - name: Build firmware + run: make + build_simulator: runs-on: ubuntu-latest steps: