-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -160,6 +160,8 @@ jobs: | |
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ github.job }}-${{ matrix.coin }} | ||
- name: Unshallow submodules | ||
run: git submodule foreach --recursive 'git fetch --unshallow || echo "Not a shallow submodule"' | ||
- name: Cache built | ||
if: ${{ !startsWith(github.ref, 'refs/tags/v') }} | ||
uses: actions/cache@v4 | ||
|
@@ -207,10 +209,10 @@ jobs: | |
submodules: recursive | ||
- uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: '15.4' | ||
xcode-version: '16.1' | ||
- name: install dependencies | ||
run: | | ||
brew install ccache binutils pigz autoconf automake libtool pkg-config | ||
brew install ccache binutils pigz autoconf automake libtool pkg-config git | ||
- name: Patch sources | ||
run: | | ||
git config --global --add safe.directory '*' | ||
|
@@ -221,6 +223,8 @@ jobs: | |
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ github.job }}-${{ matrix.coin }} | ||
- name: Unshallow submodules | ||
run: git submodule foreach --recursive 'git fetch --unshallow || echo "Not a shallow submodule"' | ||
- name: Cache built | ||
if: ${{ !startsWith(github.ref, 'refs/tags/v') }} | ||
uses: actions/cache@v4 | ||
|