ci: test on latest Fedora
Signed-off-by: umarcor <unai.martinezcorral@ehu.eus>
This commit is contained in:
parent
e4e1532957
commit
497c34e660
|
@ -33,7 +33,8 @@ osvers = [
|
|||
("centos", "8"),
|
||||
("debian", "buster"),
|
||||
("debian", "bullseye"),
|
||||
("debian", "sid")
|
||||
("debian", "sid"),
|
||||
("fedora", "35")
|
||||
]
|
||||
|
||||
for osver in osvers:
|
||||
|
|
|
@ -40,6 +40,7 @@ jobs:
|
|||
container: ${{matrix.os}}:${{matrix.os-version}}
|
||||
|
||||
steps:
|
||||
|
||||
- name: Setup repository
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
|
@ -53,6 +54,10 @@ jobs:
|
|||
if: ${{matrix.os == 'centos'}}
|
||||
run: yum -y install wget
|
||||
|
||||
- name: Install utils
|
||||
if: ${{matrix.os == 'fedora'}}
|
||||
run: dnf install -y wget
|
||||
|
||||
- name: Install tuttest
|
||||
run: |
|
||||
wget https://github.com/antmicro/tuttest/releases/download/v0.2-beta/tuttest -O /usr/bin/tuttest
|
||||
|
|
Loading…
Reference in New Issue