Skip to content

Commit

Permalink
Use github for gnulib
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvestre authored and BenWiederhake committed Oct 6, 2024
1 parent 7d1a472 commit bdaeac1
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/GnuTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,16 @@ jobs:
repository: 'coreutils/coreutils'
path: '${{ steps.vars.outputs.path_GNU }}'
ref: ${{ steps.vars.outputs.repo_GNU_ref }}
submodules: recursive
submodules: false

- name: Override submodule URL and initialize submodules
# Use github instead of upstream git server
run: |
git submodule sync --recursive
git config submodule.gnulib.url https://github.com/coreutils/gnulib.git
git submodule update --init --recursive --depth 1
working-directory: ${{ steps.vars.outputs.path_GNU }}

- name: Retrieve reference artifacts
uses: dawidd6/action-download-artifact@v6
# ref: <https://github.com/dawidd6/action-download-artifact>
Expand Down

0 comments on commit bdaeac1

Please sign in to comment.