From 320638508d3634d68520590833f2fd4cf468d541 Mon Sep 17 00:00:00 2001 From: Fischer Moseley <42497969+fischermoseley@users.noreply.github.com> Date: Sun, 16 Apr 2023 16:09:13 -0400 Subject: [PATCH] unconfused myself, add manta as dependency to more parts of CI --- .github/workflows/functional_sim.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/functional_sim.yml b/.github/workflows/functional_sim.yml index 36f14ab..29b53b0 100644 --- a/.github/workflows/functional_sim.yml +++ b/.github/workflows/functional_sim.yml @@ -5,5 +5,19 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + + - name: Install Manta from Source + run: | + pip install setuptools --upgrade + + # omitting the following commmand causes the version of setuptools + # used by python to get confused, and it doesn't detect the name + # or version of the package from pyproject.toml - so the following + # workaround is used: + # https://github.com/pypa/setuptools/issues/3269#issuecomment-1254507377 + export DEB_PYTHON_INSTALL_LAYOUT=deb_system + + python3 -m pip install . + - run: sudo apt install iverilog - run: make functional_sim \ No newline at end of file