From a0d5316f1ad1e5ae7ebccb6bde97a90b1ff892cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?A=2EM=2E=20Esmor=C3=ADs?= Date: Mon, 11 Mar 2024 11:30:56 +0100 Subject: [PATCH] Debugging cmake.yml ... --- .github/workflows/cmake.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 2c3f10158..eaaa56587 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -129,11 +129,20 @@ jobs: ##### LasTools ##### - name: Build LASTools - if: steps.cache-lastools-armadillo-gdal.outputs.cache-hit != 'true' + #if: steps.cache-lastools-armadillo-gdal.outputs.cache-hit != 'true' # TODO Restore run: | wget -O LAStools.zip https://github.com/LAStools/LAStools/releases/download/v2.0.2/LAStools.zip unzip LAStools.zip -d ${{github.workspace}}/lib + echo 'github.workspace: '${{ github.workspace }} + ls ${{ github.workspace }} + echo -e "\n" + echo ${{ github.workspace }}'/lib' + ls ${{ github.workspace }}/lib + echo -e "\n" + echo -e "PWD BEFORE: ${PWD}" cd LAStools && cmake . && make + echo -e "PWD AFTER: ${PWD}" + echo -e "\n------------------------------------------------\n\n" cd .. && rm LAStools.zip