Skip to content

Commit b585dde

Browse files
mkovaluafelliott
authored andcommitted
infra: use egg_info
1 parent 684aa96 commit b585dde

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/test-build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ jobs:
6666
run: poetry run flake8 .
6767

6868
- name: Build plugins
69-
run: poetry run pip install .
69+
run: |
70+
python3 setup.py egg_info
71+
poetry run pip install .
7072
7173
- name: Run unit tests
7274
run: |

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ COPY ./ /code/
5858
ARG GIT_COMMIT=
5959
ENV GIT_COMMIT=${GIT_COMMIT}
6060

61+
RUN python3 setup.py egg_info
6162
RUN python3 -m pip install .
6263

6364
EXPOSE 7778

0 commit comments

Comments
 (0)