Skip to content

Commit

Permalink
CI: added target to build on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
tridge committed Jul 22, 2024
1 parent 6363683 commit fa6b465
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI_build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI Build
name: CI Build Linux

on: [push, pull_request]

Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/CI_build_windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI Build Windows

on: [push, pull_request]

jobs:
build:
runs-on: 'windows-latest'

steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'

- name: Build CI
run: |
make arm_sdk_install
tools/windows/make/bin/make -j8
- name: Archive build
uses: actions/upload-artifact@v3
with:
name: AM32-binaries
path: |
obj/*.hex
retention-days: 7

0 comments on commit fa6b465

Please sign in to comment.