diff --git a/.github/workflows/base_daily_tests.yml b/.github/workflows/base_daily_tests.yml index 0d6304248d..8256b2532a 100644 --- a/.github/workflows/base_daily_tests.yml +++ b/.github/workflows/base_daily_tests.yml @@ -34,7 +34,7 @@ jobs: strategy: fail-fast: false matrix: - target: + platform: - os: linux builder: ubuntu-22.04 shell: bash @@ -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 @@ -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 }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac85f18c4b..0498da97ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - target: + platform: - os: linux cpu: amd64 shell: bash @@ -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} @@ -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 @@ -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 }}