Skip to content

Commit

Permalink
try to fix exclude syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
diegomrsantos committed Dec 11, 2023
1 parent f9aa2b8 commit f75228f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/multi_nim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@ jobs:
uses: status-im/nim-libp2p/.github/workflows/multi_nim_common.yml@simplifly-ci-matrix
with:
nim-branch: "['version-1-6','version-2-0']"
cpu: "['amd64']"
exclude: "[]"
cpu: "['amd64']"
3 changes: 2 additions & 1 deletion .github/workflows/multi_nim_common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
description: 'Exclude matrix configurations'
required: false
type: string
default: "[]"

jobs:
delete-cache:
Expand All @@ -40,7 +41,7 @@ jobs:
shell: msys2 {0}
branch: ${{ fromJSON(inputs.nim-branch) }}
cpu: ${{ fromJSON(inputs.cpu) }}
exclude: ${{ fromJSON(inputs.excludes) }}
exclude: ${{ fromJSON(inputs.exclude) }}

defaults:
run:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/multi_nim_devel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@ jobs:
uses: status-im/nim-libp2p/.github/workflows/multi_nim_common.yml@simplifly-ci-matrix
with:
nim-branch: "['devel']"
cpu: "['amd64']"
exclude: "['']"
cpu: "['amd64']"
2 changes: 1 addition & 1 deletion .github/workflows/multi_nim_legacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
with:
nim-branch: "['version-1-6','version-2-0', 'devel']"
cpu: "['i386']"
exclude: "[{'os':'macos'}"
exclude: "[{'platform': {'os':'macos'}]}"

0 comments on commit f75228f

Please sign in to comment.