Skip to content

Commit

Permalink
chore(ci): Fix the python source run
Browse files Browse the repository at this point in the history
  • Loading branch information
cdecker committed Jan 24, 2025
1 parent eaf202e commit 55419fc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,14 @@ jobs:
with:
version: "latest"

- run: |
cd libs/gl-client-py
uv run maturin develop --uv
- name: Build Source Distribution
run: uv build --package gl-client --sdist

- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-source
path: libs/gl-client-py/dist/gl_client-*.tar.gz
path: dist/gl_client-*.tar.gz

linux:
runs-on: ubuntu-20.04
Expand Down
4 changes: 3 additions & 1 deletion docker/gl-testing/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ ENV GL_DOCKER=1
# Tells cln to use shorter polling intervals
ENV DEVELOPER=1
ENV PYTHONUNBUFFERED=1
ENV PATH=$HOME/.local/bin:/opt/cln-latest/usr/local/bin:/opt/bitcoin/bin:/opt/cln-latest/usr/local/bin:$PATH
# Start by setting the PATH once and for all, they might not be there
# yet, but we will put the tools in those directories.
ENV PATH=$HOME/.local/bin:/opt/cln-latest/usr/local/bin:/opt/bitcoin/bin:/opt/cln-latest/usr/local/bin:/usr/local/bin:$PATH
ENV UV_INSTALL_DIR=/usr/local/bin/
# grpcio == 1.46 produces spammy log messages, silence them
ENV GRPC_ENABLE_FORK_SUPPORT=0
Expand Down

0 comments on commit 55419fc

Please sign in to comment.