summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Peter <mail@david-peter.de>2022-02-18 23:23:23 +0100
committerDavid Peter <mail@david-peter.de>2022-02-18 23:23:23 +0100
commit7f6726faf28398aa84324e0f41758a779266eca9 (patch)
tree221c36d3ed4c886da3a41360ce7c6f4168bf03e0
parent8b7cf3ec55b6fb573ada70ad8c200967e0f14405 (diff)
Update formatting on Windowsadd-integration-test
-rw-r--r--.github/workflows/CICD.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml
index dadaf09..5522a5b 100644
--- a/.github/workflows/CICD.yml
+++ b/.github/workflows/CICD.yml
@@ -169,13 +169,16 @@ jobs:
echo -n "123" > test-directory/file-3-bytes
echo -n "1234567" > test-directory/file-7-bytes
+ if [ "$RUNNER_OS" == "Windows" ]; then
+ curl https://download.sysinternals.com/files/DU.zip --output DU.zip
+ unzip DU.zip
+ ./du64.exe -accepteula -q test-directory/empty-file
+ fi
+
echo "Disk usage"
echo "=========="
${{ steps.strip.outputs.BIN_PATH }} test-directory
if [ "$RUNNER_OS" == "Windows" ]; then
- curl https://download.sysinternals.com/files/DU.zip --output DU.zip
- unzip DU.zip
- ./du64.exe -accepteula
./du64.exe -q test-directory
elif [ "$RUNNER_OS" == "macOS" ]; then
du -c -k test-directory