mirror of
https://github.com/transmission/transmission
synced 2024-12-22 07:42:37 +00:00
parent
836e020853
commit
1074c30e60
1 changed files with 16 additions and 10 deletions
26
.github/workflows/actions.yml
vendored
26
.github/workflows/actions.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue