mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
Switch the CI to use macos-13 instead of macos-latest, due to failures (#12493)
# Description The CI has been failing lately on macOS, most likely because it's running out of memory now that the `polars` plugin has been included and it's quite large on top of `dfr`. This PR just makes use use the `macos-13` runner instead of `macos-latest` because the latter has only half as much RAM because it's running on the Apple M1 platform. --------- Co-authored-by: sholderbach <sholderbach@users.noreply.github.com>
This commit is contained in:
parent
3a39e3df22
commit
cd8f04041c
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@ -24,7 +24,11 @@ jobs:
|
|||||||
# Pinning to Ubuntu 20.04 because building on newer Ubuntu versions causes linux-gnu
|
# Pinning to Ubuntu 20.04 because building on newer Ubuntu versions causes linux-gnu
|
||||||
# builds to link against a too-new-for-many-Linux-installs glibc version. Consider
|
# builds to link against a too-new-for-many-Linux-installs glibc version. Consider
|
||||||
# revisiting this when 20.04 is closer to EOL (April 2025)
|
# revisiting this when 20.04 is closer to EOL (April 2025)
|
||||||
platform: [windows-latest, macos-latest, ubuntu-20.04]
|
#
|
||||||
|
# Using macOS 13 runner because 14 is based on the M1 and has half as much RAM (7 GB,
|
||||||
|
# instead of 14 GB) which is too little for us right now. Revisit when `dfr` commands are
|
||||||
|
# removed and we're only building the `polars` plugin instead
|
||||||
|
platform: [windows-latest, macos-13, ubuntu-20.04]
|
||||||
feature: [default, dataframe]
|
feature: [default, dataframe]
|
||||||
include:
|
include:
|
||||||
- feature: default
|
- feature: default
|
||||||
@ -34,7 +38,7 @@ jobs:
|
|||||||
exclude:
|
exclude:
|
||||||
- platform: windows-latest
|
- platform: windows-latest
|
||||||
feature: dataframe
|
feature: dataframe
|
||||||
- platform: macos-latest
|
- platform: macos-13
|
||||||
feature: dataframe
|
feature: dataframe
|
||||||
|
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
|
Loading…
Reference in New Issue
Block a user