Skip to content

Commit d28d14d

Browse files
committed
tests: GHA Debugging - TO BE SQUASHED
Added ls / echo statements in GHA build workflow to figure out why the .wasm files are failing to build. Signed-off-by: Matthew Gee <mgee@iol.unh.edu>
1 parent 9fe46ea commit d28d14d

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ jobs:
202202

203203
- name: Build WASM sample
204204
run: |
205+
echo $GITHUB_WORKSPACE
205206
SAMPLE_DIR=$GITHUB_WORKSPACE/ocre-sdk/${{ matrix.sample.path }}
206207
if [ ! -d "$SAMPLE_DIR" ]; then
207208
echo "Directory not found: $SAMPLE_DIR"
@@ -212,6 +213,11 @@ jobs:
212213
cd "$SAMPLE_DIR/build"
213214
cmake .. -DCMAKE_TOOLCHAIN_FILE=$WASI_SDK_PATH/share/cmake/wasi-sdk.cmake
214215
make
216+
pwd
217+
ls $GITHUB_WORKSPACE/ocre-sdk/${{ matrix.sample.path }}/build
218+
ls
219+
ls $GITHUB_WORKSPACE
220+
215221
env:
216222
WASI_SDK_PATH: /opt/wasi-sdk
217223

0 commit comments

Comments
 (0)