ci: install 'git' in the containers before cloning the repo

Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
This commit is contained in:
Unai Martinez-Corral 2021-12-15 02:52:21 +01:00 committed by umarcor
parent 115d4e74e0
commit e4c55bcef0
1 changed files with 8 additions and 10 deletions

View File

@ -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: |