mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-03 09:29:46 +00:00
Remove unused brew packages on macOS (#531)
* Remove unused brew packages on macOS * Remove reference to Docker in macOS CI * Remove gems, explicitly test Intel and m1 macOS * Allow gem to error since it still mostly runs
This commit is contained in:
parent
ad0ecc5185
commit
aaff74575f
2 changed files with 12 additions and 1 deletions
11
.github/actions/build-dependencies/action.yml
vendored
11
.github/actions/build-dependencies/action.yml
vendored
|
@ -16,6 +16,17 @@ runs:
|
||||||
docker system prune -a --volumes
|
docker system prune -a --volumes
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
|
|
||||||
|
- name: Remove unused packages
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
(gem uninstall -aIx) || (exit 0)
|
||||||
|
brew uninstall --force "*msbuild*" "*powershell*" "*nuget*" "*bazel*" "*ansible*" "*terraform*" "*heroku*" "*aws*" azure-cli
|
||||||
|
brew uninstall --force "*nodejs*" "*npm*" "*yarn*" "*java*" "*kotlin*" "*golang*" "*swift*" "*julia*" "*fortran*" "*android*"
|
||||||
|
brew uninstall --force "*apache2*" "*nginx*" "*firefox*" "*chromium*" "*chrome*" "*edge*"
|
||||||
|
brew uninstall --force "*qemu*" "*sql*" "*texinfo*" "*imagemagick*"
|
||||||
|
brew cleanup
|
||||||
|
if: runner.os == 'macOS'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
||||||
clippy:
|
clippy:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
os: [ubuntu-latest, macos-13, macos-14, windows-latest]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in a new issue