Skip to content

Commit

Permalink
Remove manual python-dev install from CI script, use pip instead of p…
Browse files Browse the repository at this point in the history
…ython3 -m pip

Internal-tag: [#52487]
Signed-off-by: Krzysztof Obłonczek <[email protected]>
  • Loading branch information
koblonczek committed Feb 14, 2024
1 parent 6133d2d commit 0a1715e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,14 @@ jobs:
apt-get install -y \
antlr4 \
libantlr4-runtime-dev \
python3-dev \
yosys \
gcc-riscv64-unknown-elf \
meson \
ninja-build \
bsdextrautils
python3 -m pip install --upgrade pip wheel setuptools
python3 -m pip install nox
python3 -m pip install git+https://github.com/antmicro/tuttest
pip install --upgrade pip wheel setuptools
pip install nox
pip install git+https://github.com/antmicro/tuttest
- name: Run lint checks
run: nox -s isort black flake8
Expand Down

0 comments on commit 0a1715e

Please sign in to comment.