Skip to content

Commit

Permalink
Fix nim_branch object keys.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroCabeza committed Jun 10, 2024
1 parent df8d3e2 commit bedb76a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/base_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ jobs:
run:
shell: ${{ matrix.platform.shell }}

name: '${{ matrix.platform.os }}-${{ matrix.platform.cpu }} (Nim ${{ matrix.nim_branch }})'
name: '${{ matrix.platform.os }}-${{ matrix.platform.cpu }} (Nim ${{ matrix.nim_branch.version }})'
runs-on: ${{ matrix.platform.builder }}
continue-on-error: ${{ matrix.nim_branch == 'version-2-0' || matrix.nim_branch == 'devel' }}
continue-on-error: ${{ matrix.nim_branch.version == 'version-2-0' || matrix.nim_branch.version == 'devel' }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -83,7 +83,7 @@ jobs:
with:
os: ${{ matrix.platform.os }}
shell: ${{ matrix.platform.shell }}
nim_branch: ${{ matrix.nim_branch }}
nim_branch: ${{ matrix.nim_branch.version }}
cpu: ${{ matrix.platform.cpu }}

- name: Setup Go
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Daily amd64
uses: ./.github/workflows/base_tests.yml
with:
include: "[{'nim_branch': 'version-2-0', 'memory_management': 'orc'}]"
include: "[{'nim_branch': {'version': 'version-2-0', 'memory_management': 'orc'}}]"
exclude: "[{'platform': {'cpu': 'i386'}}]"

test_i386:
Expand All @@ -22,5 +22,5 @@ jobs:
name: Daily
uses: ./.github/workflows/base_tests.yml
with:
include: "[{'nim_branch': 'devel'}, 'memory_management': 'orc']"
include: "[{'nim_branch': {'version': 'devel', 'memory_management': 'orc'}}]"
exclude: "[{'platform': {'os': 'windows'}}, {'platform': {'os': 'macos'}}, {'platform': {'cpu': 'i386'}}]"

0 comments on commit bedb76a

Please sign in to comment.