Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
lupyuen committed Nov 20, 2024
1 parent d86d902 commit 5423c3b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/arch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
run: |
# Skip all macOS Builds
if [[ "${{ inputs.os }}" == "macOS" ]]; then
if [[ "${{ inputs.os }}" == "NOTUSED" ]]; then
echo "Skipping all macOS Builds"
echo "skip_all_builds=1" | tee -a $GITHUB_OUTPUT
exit
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ on:
paths-ignore:
- 'Documentation/**'
branches:
- master
- 'releases/*'
tags:

Expand Down Expand Up @@ -118,7 +119,7 @@ jobs:

# Select the Linux Builds based on PR Arch Label
Linux-Arch:
uses: apache/nuttx/.github/workflows/arch.yml@master
uses: NuttX/nuttx/.github/workflows/arch.yml@master
needs: Fetch-Source
with:
os: Linux
Expand All @@ -142,7 +143,7 @@ jobs:
DOCKER_BUILDKIT: 1

strategy:
max-parallel: 12
fail-fast: false
matrix:
boards: ${{ fromJSON(needs.Linux-Arch.outputs.selected_builds) }}

Expand Down Expand Up @@ -197,7 +198,7 @@ jobs:

# Select the macOS Builds based on PR Arch Label
macOS-Arch:
uses: apache/nuttx/.github/workflows/arch.yml@master
uses: NuttX/nuttx/.github/workflows/arch.yml@master
needs: Fetch-Source
with:
os: macOS
Expand All @@ -212,7 +213,7 @@ jobs:
needs: macOS-Arch
if: ${{ needs.macOS-Arch.outputs.skip_all_builds != '1' }}
strategy:
max-parallel: 2
fail-fast: false
matrix:
boards: ${{ fromJSON(needs.macOS-Arch.outputs.selected_builds) }}
steps:
Expand Down Expand Up @@ -257,7 +258,7 @@ jobs:

# Select the msys2 Builds based on PR Arch Label
msys2-Arch:
uses: apache/nuttx/.github/workflows/arch.yml@master
uses: NuttX/nuttx/.github/workflows/arch.yml@master
needs: Fetch-Source
with:
os: msys2
Expand Down Expand Up @@ -338,7 +339,7 @@ jobs:

# Select the msvc Builds based on PR Arch Label
msvc-Arch:
uses: apache/nuttx/.github/workflows/arch.yml@master
uses: NuttX/nuttx/.github/workflows/arch.yml@master
needs: Fetch-Source
with:
os: msvc
Expand Down

0 comments on commit 5423c3b

Please sign in to comment.