Skip to content

Commit

Permalink
Reorder matrix entries to be closer to original order
Browse files Browse the repository at this point in the history
  • Loading branch information
unvermuthet committed Feb 21, 2025
1 parent 8395a01 commit 136317d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,29 @@ jobs:
# A build is made for every possible combination of parameters
# You can add or remove entries from the arrays of each parameter to custimize which builds you want to run
# See https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/running-variations-of-jobs-in-a-workflow
float-precision: [single, double]
target-type: [template_debug]
target:
[
{ platform: linux, arch: x86_64, os: ubuntu-22.04 },
{ platform: windows, arch: x86_64, os: windows-latest },
{ platform: windows, arch: x86_32, os: windows-latest },
{ platform: macos, arch: universal, os: macos-latest },
{ platform: ios, arch: arm64, os: macos-latest },
{ platform: android, arch: arm64, os: ubuntu-22.04 },
{ platform: android, arch: arm32, os: ubuntu-22.04 },
{ platform: android, arch: x86_64, os: ubuntu-22.04 },
{ platform: android, arch: x86_32, os: ubuntu-22.04 },
{ platform: web, arch: wasm32, os: ubuntu-22.04 },
{ platform: ios, arch: arm64, os: macos-latest },
{ platform: web, arch: wasm32, os: ubuntu-22.04 }
]
include: # Also build a release version for these specific targets. Remove if you add template_release up top.
- float-precision: single
target-type: [template_debug]
float-precision: [single, double]
include: # Also build a release version for these specific targets. Remove if you add template_release above.
- target: { platform: linux, arch: x86_64, os: ubuntu-22.04 }
target-type: template_release
target: { platform: linux, arch: x86_64, os: ubuntu-22.04 }
float-precision: single

- float-precision: double
- target: { platform: linux, arch: x86_64, os: ubuntu-22.04 }
target-type: template_release
target: { platform: linux, arch: x86_64, os: ubuntu-22.04 }
float-precision: double

runs-on: ${{ matrix.target.os }}
steps:
Expand Down

0 comments on commit 136317d

Please sign in to comment.