GitHub

Original file line numberDiff line numberDiff line change

@@ -104,7 +104,7 @@ jobs:

104104

run: |

105105
106106

# Skip all macOS Builds

107-

if [[ "${{ inputs.os }}" == "macOS" ]]; then

107+

if [[ "${{ inputs.os }}" == "NOTUSED" ]]; then

108108

echo "Skipping all macOS Builds"

109109

echo "skip_all_builds=1" | tee -a $GITHUB_OUTPUT

110110

exit

Original file line numberDiff line numberDiff line change

@@ -21,6 +21,7 @@ on:

2121

paths-ignore:

2222

- 'Documentation/**'

2323

branches:

24+

- master

2425

- 'releases/*'

2526

tags:

2627

@@ -118,7 +119,7 @@ jobs:

118119
119120

# Select the Linux Builds based on PR Arch Label

120121

Linux-Arch:

121-

uses: apache/nuttx/.github/workflows/arch.yml@master

122+

uses: NuttX/nuttx/.github/workflows/arch.yml@master

122123

needs: Fetch-Source

123124

with:

124125

os: Linux

@@ -142,7 +143,7 @@ jobs:

142143

DOCKER_BUILDKIT: 1

143144
144145

strategy:

145-

max-parallel: 12

146+

fail-fast: false

146147

matrix:

147148

boards: ${{ fromJSON(needs.Linux-Arch.outputs.selected_builds) }}

148149

@@ -196,7 +197,7 @@ jobs:

196197
197198

# Select the macOS Builds based on PR Arch Label

198199

macOS-Arch:

199-

uses: apache/nuttx/.github/workflows/arch.yml@master

200+

uses: NuttX/nuttx/.github/workflows/arch.yml@master

200201

needs: Fetch-Source

201202

with:

202203

os: macOS

@@ -211,7 +212,7 @@ jobs:

211212

needs: macOS-Arch

212213

if: ${{ needs.macOS-Arch.outputs.skip_all_builds != '1' }}

213214

strategy:

214-

max-parallel: 2

215+

fail-fast: false

215216

matrix:

216217

boards: ${{ fromJSON(needs.macOS-Arch.outputs.selected_builds) }}

217218

steps:

@@ -256,7 +257,7 @@ jobs:

256257
257258

# Select the msys2 Builds based on PR Arch Label

258259

msys2-Arch:

259-

uses: apache/nuttx/.github/workflows/arch.yml@master

260+

uses: NuttX/nuttx/.github/workflows/arch.yml@master

260261

needs: Fetch-Source

261262

with:

262263

os: msys2

@@ -337,7 +338,7 @@ jobs:

337338
338339

# Select the msvc Builds based on PR Arch Label

339340

msvc-Arch:

340-

uses: apache/nuttx/.github/workflows/arch.yml@master

341+

uses: NuttX/nuttx/.github/workflows/arch.yml@master

341342

needs: Fetch-Source

342343

with:

343344

os: msvc

Read the original on github.com ↗