Skip to content

Commit

Permalink
ci: unshallow submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCyjaneK committed Jan 5, 2025
1 parent 070183c commit bbb28c7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/full_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 '*'
Expand All @@ -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
Expand Down

0 comments on commit bbb28c7

Please sign in to comment.