fix recursive submodule checkout

pull/7266/head
Stephen 2021-03-28 14:59:21 -07:00 committed by GitHub
parent 327fc15150
commit 3527544cff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -27,6 +27,8 @@ jobs:
steps: steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with:
submodules: 'recursive'
# Stop mysql # Stop mysql
- name: Shutdown Ubuntu MySQL (SUDO) - name: Shutdown Ubuntu MySQL (SUDO)
@ -64,7 +66,6 @@ jobs:
env: env:
php_version: ${{ matrix.php }} php_version: ${{ matrix.php }}
run: | run: |
git submodule update --init --recursive
sudo apt-get -y update sudo apt-get -y update
# Repo is missing for unknown reason # Repo is missing for unknown reason
LC_ALL=C.UTF-8 sudo apt-add-repository ppa:ondrej/php -y LC_ALL=C.UTF-8 sudo apt-add-repository ppa:ondrej/php -y