From 3c9899d06654ff3ea1f24cf2d47f470319a9983f Mon Sep 17 00:00:00 2001 From: Emil Bohleber Date: Mon, 29 Jul 2024 15:56:27 +0200 Subject: [PATCH] [SES-42] show filesystem after craft install also change some parameters around --- .github/workflows/ionos-windows-build.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ionos-windows-build.yml b/.github/workflows/ionos-windows-build.yml index a35a0502b27c0..edb05ef93d307 100644 --- a/.github/workflows/ionos-windows-build.yml +++ b/.github/workflows/ionos-windows-build.yml @@ -32,6 +32,10 @@ jobs: run: | & "${{ github.workspace }}\.github\workflows\autobuild.ps1" + - name: Print Filesystem for Debug + run: | + Get-ChildItem -Recurse "${{ github.workspace }}\Craft64\" + # - name: Clone CraftMaster # run: git clone -q --depth=1 https://invent.kde.org/kde/craftmaster.git "${{ github.workspace }}\craft\CraftMaster" @@ -41,11 +45,12 @@ jobs: - name: Setup Craft Environment run: | - & "${{ github.workspace }}\Craft64\craft\craftenv.ps1" + cd "${{ github.workspace }}\Craft64\craft\" + $ ".\craftenv.ps1" - name: Add blueprint repository run: | - & craft --add-blueprint-repository [git]https://github.com/EmilBohleber/nc-desktop-client-blueprints.git + craft --add-blueprint-repository [git]https://github.com/EmilBohleber/nc-desktop-client-blueprints.git # - name: Craft unshelve # continue-on-error: true @@ -59,7 +64,7 @@ jobs: - name: craft run: | - & "${{ github.workspace }}\.github\workflows\craft_setup.ps1" -c craft + craft craft # - name: print Debug filesystem # run: | @@ -67,5 +72,5 @@ jobs: - name: Install dependencies run: | - & "${{ github.workspace }}\.github\workflows\craft_setup.ps1" -c --install-deps nextcloud-client + craft --install-deps nextcloud-client