Skip to content

Commit ff0a847

Browse files
committed
Install nuget which no longer comes with the runner image
1 parent 9ee3a7a commit ff0a847

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,14 @@ jobs:
7474
- name: Move checkout
7575
run: cmake -E copy_directory ${{ github.workspace }}/mixxx-vcpkg ${{ matrix.vcpkg_path }}
7676

77+
78+
- name: "[macOS] Install dependencies for nuget & vcpkg"
79+
if: runner.os == 'macOS'
80+
run: |
81+
brew update && brew install automake nasm autoconf-archive nuget ${{ matrix.brew_extra }}
82+
sudo xcode-select --switch "$DEVELOPER_DIR"
83+
xcrun --show-sdk-version
84+
7785
- name: "Authenticate to GitHub Packages (readwrite)"
7886
if: runner.os != 'Linux' && github.event_name == 'push' && github.repository_owner == 'mixxxdj'
7987
shell: bash
@@ -99,14 +107,7 @@ jobs:
99107
- name: Bootstrap vcpkg
100108
run: ${{ matrix.vcpkg_bootstrap }}
101109
working-directory: ${{ matrix.vcpkg_path }}
102-
103-
- name: "[macOS] Bootstrap vcpkg"
104-
if: runner.os == 'macOS'
105-
run: |
106-
brew update && brew install automake nasm autoconf-archive ${{ matrix.brew_extra }}
107-
sudo xcode-select --switch "$DEVELOPER_DIR"
108-
xcrun --show-sdk-version
109-
110+
110111
- name: Check available disk space
111112
run: ${{ matrix.check_disk_space }}
112113

0 commit comments

Comments
 (0)