From e4c55bcef0e352db84ba5529dd7ffe58d0fdd33c Mon Sep 17 00:00:00 2001 From: Unai Martinez-Corral Date: Wed, 15 Dec 2021 02:52:21 +0100 Subject: [PATCH] ci: install 'git' in the containers before cloning the repo Signed-off-by: Unai Martinez-Corral --- .github/workflows/sphinx-tuttest.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/sphinx-tuttest.yml b/.github/workflows/sphinx-tuttest.yml index 3440540..9c93fc0 100644 --- a/.github/workflows/sphinx-tuttest.yml +++ b/.github/workflows/sphinx-tuttest.yml @@ -41,15 +41,9 @@ jobs: container: ${{matrix.os}}:${{matrix.os-version}} steps: - - - name: Setup repository - uses: actions/checkout@v2 - with: - submodules: recursive - - name: Install utils if: ${{matrix.os == 'ubuntu' || matrix.os == 'debian'}} - run: apt -qqy update && apt -qqy install wget locales && locale-gen $LANG + run: apt -qqy update && apt -qqy install git wget locales && locale-gen $LANG - name: Install utils if: ${{matrix.os == 'centos' && matrix.os-version == '8'}} @@ -59,12 +53,16 @@ jobs: - name: Install utils if: ${{matrix.os == 'centos'}} - run: | - yum -y install wget + run: yum -y install git wget - name: Install utils if: ${{matrix.os == 'fedora'}} - run: dnf install -y wget + run: dnf install -y git wget + + - name: Setup repository + uses: actions/checkout@v2 + with: + submodules: recursive - name: Install tuttest run: |