From 55a4e998106016026553ff53368ac4265ae5daae Mon Sep 17 00:00:00 2001 From: Steve Smith Date: Fri, 13 Dec 2024 15:00:27 -0500 Subject: [PATCH] Update build-ramdisk.yml --- .github/workflows/build-ramdisk.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-ramdisk.yml b/.github/workflows/build-ramdisk.yml index ad742983a..c2dfc6160 100644 --- a/.github/workflows/build-ramdisk.yml +++ b/.github/workflows/build-ramdisk.yml @@ -31,9 +31,14 @@ jobs: run: | cp -r $GITHUB_WORKSPACE/* /dev/shm/ramdisk/project - # Step 5: Build and Test from the ramdisk + # Step 5: Debug Directory Contents + - name: Debug Directory + run: | + ls -R /dev/shm/ramdisk/project + + # Step 6: Build and Test from the ramdisk - name: Build and Test run: | cd /dev/shm/ramdisk/project - dotnet build --configuration Debug --output /dev/shm/ramdisk/build - dotnet test --no-build /dev/shm/ramdisk/build --verbosity normal + dotnet build Clean.Architecture.sln --configuration Debug + dotnet test Clean.Architecture.sln --