1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-21 23:32:35 +00:00

fix: macOS CI (#7254)

* fix macOS CI

* adding `--formulae`
This commit is contained in:
Cœur 2024-11-21 11:34:34 -08:00 committed by GitHub
parent 836e020853
commit 1074c30e60
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -190,7 +190,8 @@ jobs:
sw_vers
- name: Get Dependencies
run: |
brew install cmake gettext libdeflate libevent libpsl miniupnpc ninja node pkg-config
brew uninstall -f pkg-config pkg-config@0.29.2 # https://github.com/actions/runner-images/issues/10984
brew install --formulae cmake gettext libdeflate libevent libpsl miniupnpc ninja node pkgconf
- name: Get Source
uses: actions/checkout@v4
with:
@ -343,13 +344,14 @@ jobs:
sw_vers
- name: Get Dependencies
run: |
brew install cmake gettext libdeflate libevent libpsl miniupnpc ninja node pkg-config
brew uninstall -f pkg-config pkg-config@0.29.2 # https://github.com/actions/runner-images/issues/10984
brew install --formulae cmake gettext libdeflate libevent libpsl miniupnpc ninja node pkgconf
- name: Get Dependencies (GTK)
if: ${{ needs.what-to-make.outputs.make-gtk == 'true' }}
run: brew install gtkmm3
run: brew install --formula gtkmm3
- name: Get Dependencies (Qt)
if: ${{ needs.what-to-make.outputs.make-qt == 'true' }}
run: brew install qt
run: brew install --formula qt
- name: Get Source
uses: actions/checkout@v4
with:
@ -402,7 +404,8 @@ jobs:
sw_vers
- name: Get Dependencies
run: |
brew install cmake gettext libdeflate libevent libpsl miniupnpc ninja node pkg-config
brew unlink pkg-config # https://github.com/actions/runner-images/issues/10984
brew install --formulae cmake gettext libdeflate libevent libpsl miniupnpc ninja node pkgconf
- name: Get Source
uses: actions/checkout@v4
with:
@ -620,7 +623,8 @@ jobs:
sw_vers
- name: Get Dependencies
run: |
brew install cmake gettext ninja node pkg-config
brew uninstall -f pkg-config pkg-config@0.29.2 # https://github.com/actions/runner-images/issues/10984
brew install --formulae cmake gettext ninja node pkgconf
- name: Get Source
uses: actions/download-artifact@v4
with:
@ -681,10 +685,11 @@ jobs:
sw_vers
- name: Get Dependencies
run: |
brew install cmake gettext ninja node pkg-config
brew unlink pkg-config # https://github.com/actions/runner-images/issues/10984
brew install --formulae cmake gettext ninja node pkgconf
- name: Get Dependencies (Qt)
if: ${{ needs.what-to-make.outputs.make-qt == 'true' }}
run: brew install qt
run: brew install --formula qt
- name: Get Source
uses: actions/download-artifact@v4
with:
@ -746,10 +751,11 @@ jobs:
sw_vers
- name: Get Dependencies
run: |
brew install cmake gettext ninja node pkg-config
brew unlink pkg-config # https://github.com/actions/runner-images/issues/10984
brew install --formulae cmake gettext ninja node pkgconf
- name: Get Dependencies (GTK)
if: ${{ needs.what-to-make.outputs.make-gtk == 'true' }}
run: brew install gtkmm3
run: brew install --formula gtkmm3
- name: Get Source
uses: actions/download-artifact@v4
with: