Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroCabeza committed Jul 22, 2024
1 parent 6731b5c commit bcc002a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/base_daily_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target:
platform:
- os: linux
builder: ubuntu-22.04
shell: bash
Expand All @@ -50,10 +50,10 @@ jobs:

defaults:
run:
shell: ${{ matrix.target.shell }}
shell: ${{ matrix.platform.shell }}

name: '${{ matrix.target.os }}-${{ matrix.cpu }} (Nim ${{ matrix.nim.branch }})'
runs-on: ${{ matrix.target.builder }}
name: '${{ matrix.platform.os }}-${{ matrix.cpu }} (Nim ${{ matrix.nim.branch }})'
runs-on: ${{ matrix.platform.builder }}
continue-on-error: ${{ matrix.nim.branch == 'devel' || matrix.nim.branch == 'version-2-0' }}
steps:
- name: Checkout
Expand All @@ -62,8 +62,8 @@ jobs:
- name: Setup Nim
uses: "./.github/actions/install_nim"
with:
os: ${{ matrix.target.os }}
shell: ${{ matrix.target.shell }}
os: ${{ matrix.platform.os }}
shell: ${{ matrix.platform.shell }}
nim_branch: ${{ matrix.nim.branch }}
cpu: ${{ matrix.cpu }}

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target:
platform:
- os: linux
cpu: amd64
shell: bash
Expand All @@ -36,15 +36,15 @@ jobs:
- branch: version-2-0
memory_management: refc
include:
- target:
- platform:
os: linux
builder: ubuntu-22.04
shell: bash
- target:
- platform:
os: macos
builder: macos-13
shell: bash
- target:
- platform:
os: windows
builder: windows-2022
shell: msys2 {0}
Expand All @@ -53,7 +53,7 @@ jobs:
run:
shell: ${{ matrix.shell }}

name: '${{ matrix.target.os }}-${{ matrix.target.cpu }} (Nim ${{ matrix.nim.branch }})'
name: '${{ matrix.platform.os }}-${{ matrix.platform.cpu }} (Nim ${{ matrix.nim.branch }})'
runs-on: ${{ matrix.builder }}
steps:
- name: Checkout
Expand All @@ -64,8 +64,8 @@ jobs:
- name: Setup Nim
uses: "./.github/actions/install_nim"
with:
os: ${{ matrix.target.os }}
cpu: ${{ matrix.target.cpu }}
os: ${{ matrix.platform.os }}
cpu: ${{ matrix.platform.cpu }}
shell: ${{ matrix.shell }}
nim_branch: ${{ matrix.nim.branch }}

Expand Down

0 comments on commit bcc002a

Please sign in to comment.