Skip to content

Commit

Permalink
Print disk space to see if that's the reason for failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
kring committed Jan 25, 2025
1 parent 87f4218 commit f20afd3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ jobs:
run: |
cd d:\cesium\CesiumForUnityBuildProject\Packages\com.cesium.unity
dotnet publish Reinterop~ -o .
- name: Print disk space 1
if: success() || failure() # run this step even if previous step failed
run: |
get-psdrive
- name: Build Package
run: |
cd d:\cesium\CesiumForUnityBuildProject\Packages\com.cesium.unity
Expand All @@ -128,6 +132,10 @@ jobs:
$ENV:EZVCPKG_BASEDIR="D:/.ezvcpkg"
# Run the build
dotnet run --project Build~
- name: Print disk space 2
if: success() || failure() # run this step even if previous step failed
run: |
get-psdrive
- name: Publish Logs
if: success() || failure() # run this step even if previous step failed
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit f20afd3

Please sign in to comment.