From 1b475d9c3009cb0ad9248bb865f4491db548b19d Mon Sep 17 00:00:00 2001 From: Patrick Stephens Date: Wed, 14 Jan 2026 11:29:56 +0000 Subject: [PATCH] ci: fix rename failures Signed-off-by: Patrick Stephens --- .github/workflows/call-test-packages.yaml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.github/workflows/call-test-packages.yaml b/.github/workflows/call-test-packages.yaml index 88865aad..06633393 100644 --- a/.github/workflows/call-test-packages.yaml +++ b/.github/workflows/call-test-packages.yaml @@ -222,7 +222,6 @@ jobs: run: | sudo apt-get update find "$PWD/downloads/" -name '*.deb' -exec sh -c 'i="$1";echo "$i";sudo apt-get install -y "$i"' shell {} \; - ls -lRh /opt/fluent* shell: bash - name: Install package @@ -235,3 +234,21 @@ jobs: - name: Run integration tests run: ./testing/bats/run-package-integration-tests.sh shell: bash + + - name: Debug linux binary + if: runner.os == 'Linux' + continue-on-error: true + run: | + ls -lRh /opt + ls -lRh "${{ matrix.binary }}" || true + "${{ matrix.binary }}" --version || true + shell: bash + + - name: Debug windows binary + if: runner.os == 'Windows' + continue-on-error: true + run: | + $binaryPath = "${{ matrix.binary }}" + Get-Item -Path $binaryPath | Format-List -Property * + & $binaryPath --version + shell: pwsh