We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21f429f commit e91dc34Copy full SHA for e91dc34
.github/workflows/kernel-demos.yml
@@ -58,7 +58,13 @@ jobs:
58
59
POSIX-GCC:
60
name: Native GCC
61
- runs-on: ubuntu-latest
+ strategy:
62
+ fail-fast: false
63
+ matrix:
64
+ os:
65
+ - macos-latest
66
+ - ubuntu-latest
67
+ runs-on: ${{ matrix.os }}
68
steps:
69
- name: Checkout the FreeRTOS/FreeRTOS Repository
70
uses: actions/checkout@v3
@@ -76,6 +82,7 @@ jobs:
76
82
77
83
- name: Install GCC
78
84
shell: bash
85
+ if: ${{ matrix.os }} == "ubuntu-latest"
79
86
run: |
80
87
sudo apt-get -y update
81
88
sudo apt-get -y install build-essential
0 commit comments