diff options
author | Rye Mutt <rye@lindenlab.com> | 2024-10-04 16:03:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-04 16:03:21 -0400 |
commit | fe8f71f1a6feb1d6120f5bc4c676790ea74473fa (patch) | |
tree | f53802c3f2f9fcf3a6492b52a6a4c827b29689a5 /.github/workflows | |
parent | f89abf259dddfe9086de9d96e0b6d65a427f2971 (diff) | |
parent | 0d0ec4c20dd8de752b80ab4d271eac1fa9a2f76d (diff) |
Merge pull request #2809 from secondlife/rye/fixgha
Fix GHA build config error
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 7df105e2d5..a287f29b95 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -47,8 +47,9 @@ jobs: continue-on-error: ${{ matrix.experimental }} strategy: matrix: - runner: [windows-large, macos-12-xl, linux-large] + runner: [windows-large, macos-12-xl] configuration: ${{ fromJSON(needs.setup.outputs.configurations) }} + experimental: [false] include: - runner: linux-large experimental: true |