Skip to content

Commit

Permalink
switch to macos workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
irvingywang committed Aug 22, 2024
1 parent 63e552f commit 30c7b23
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,19 @@ on:
jobs:
build:
name: Build
runs-on: windows-latest
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: "recursive" # Ensure submodules are checked out

- name: Set up MSYS2
uses: msys2/setup-msys2@v2
with:
update: true
install: mingw-w64-x86_64-arm-none-eabi-gcc make
- name: Install dependencies
run: |
brew update
brew install arm-none-eabi-gcc make
- name: Build project
run: |
make -j24 V=1
shell: msys2 {0}
make -j V=1
shell: bash

0 comments on commit 30c7b23

Please sign in to comment.