diff --git a/.github/scripts/generate_job_matrix.py b/.github/scripts/generate_job_matrix.py index ccdd171..e3e5985 100755 --- a/.github/scripts/generate_job_matrix.py +++ b/.github/scripts/generate_job_matrix.py @@ -33,7 +33,8 @@ osvers = [ ("centos", "8"), ("debian", "buster"), ("debian", "bullseye"), - ("debian", "sid") + ("debian", "sid"), + ("fedora", "35") ] for osver in osvers: diff --git a/.github/workflows/sphinx-tuttest.yml b/.github/workflows/sphinx-tuttest.yml index ad2aa9b..8673ddf 100644 --- a/.github/workflows/sphinx-tuttest.yml +++ b/.github/workflows/sphinx-tuttest.yml @@ -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 diff --git a/docs/getting-symbiflow.rst b/docs/getting-symbiflow.rst index cc4947b..f90e388 100644 --- a/docs/getting-symbiflow.rst +++ b/docs/getting-symbiflow.rst @@ -35,6 +35,13 @@ To be able to follow through this tutorial, install the following software: yum update -y yum install -y git wget which xz + .. group-tab:: Fedora + + .. code-block:: bash + :name: install-reqs-fedora + + dnf install -y findutils git wget which xz + Next, clone the SymbiFlow examples repository and enter it: