Skip to content

Commit b4e4d95

Browse files
committed
only build if we are tagging
1 parent 8415320 commit b4e4d95

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ jobs:
2929
repository: pdal/lambda
3030
tag_with_ref: true
3131
tag_with_sha: true
32-
33-
# push: ${{ startsWith(github.ref, 'refs/tags/') }}
34-
#if: ${{ startsWith(github.ref, 'refs/tags/') }}
32+
push: ${{ startsWith(github.ref, 'refs/tags/') }}
33+
if: ${{ startsWith(github.ref, 'refs/tags/') }}
3534

3635
layer:
3736
name: Layer

Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,11 @@ RUN \
206206
#RUN \
207207
# git clone https://github.com/PDAL/python.git pdal-python \
208208
# && cd pdal-python \
209-
# && pip install numpy Cython packaging \
210-
# && ls /usr/bin/pd* \
211-
# && PDAL_CONFIG=/usr/bin/pdal-config pip install . --no-binary numpy -t $PACKAGE_PREFIX \
212-
# && ls $PACKAGE_PREFIX
209+
# && python -m pip install --upgrade pip \
210+
# && pip install numpy scikit-build packaging ninja cmake cython \
211+
# && bash -c 'python setup.py build' \
212+
# && bash -c 'python setup.py bdist_wheel' \
213+
# && ls dist
213214

214215
RUN \
215216
git clone https://github.com/connormanning/entwine.git --branch ${ENTWINE_VERSION} \

0 commit comments

Comments
 (0)