Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor committed Jul 26, 2023
1 parent 268f4a4 commit 5f5e633
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,24 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install fpga-topwrap
- uses: actions/setup-python@v4
with:
python-version: "3.11"

- name: Install dev requirements
run: |
pip3 install git+https://github.com/antmicro/tuttest
tuttest README.md | bash -
sudo apt-get update -qq
sudo apt-get install -y \
antlr4 \
libantlr4-runtime-dev \
python3-dev \
yosys
python3 -m pip install --upgrade pip wheel setuptools
python3 -m pip install -r dev.requirements.txt
python3 -m pip install git+https://github.com/antmicro/tuttest
- name: Build
run: tuttest README.md | bash -

- name: Generate sources for example HDMI setup
run: |
Expand All @@ -77,7 +91,7 @@ jobs:

- name: Install fpga-topwrap
run: |
pip3 install git+https://github.com/antmicro/tuttest
python3 -m pip install git+https://github.com/antmicro/tuttest
tuttest README.md | bash -
- name: Build example PWM setup
Expand Down

0 comments on commit 5f5e633

Please sign in to comment.