Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,9 @@ concurrency:

jobs:
macos_testing:
runs-on: macos-13
runs-on: macos-15

steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.2'

- name: Setup environment - Brew tap
run: |
brew tap osx-cross/arm
Expand Down Expand Up @@ -62,12 +58,12 @@ jobs:
- name: Hosted Unittests
if: always()
run: |
(cd test && make run-hosted-darwin)
(cd test && make run-hosted-darwin-arm64)

- name: Hosted Examples
if: always()
run: |
(cd examples/linux && ../../tools/scripts/examples_compile.py block_device assert build_info etl fiber git logger printf threads)
(cd examples/linux && ../../tools/scripts/examples_compile.py block_device assert build_info fiber git logger printf threads)

- name: Compile STM32 Examples
if: always()
Expand Down
2 changes: 1 addition & 1 deletion ext/modm-devices
2 changes: 1 addition & 1 deletion tools/build_script_generator/make/resources/compiler.mk.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ else
%% if platform == "hosted"
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
C_SUFFIX := -12
C_SUFFIX := -14
# Using homebrew include and lib paths on macOS
CPPDEFINES += -I/usr/local/include
LIBPATH += -L/usr/local/lib
Expand Down
Loading