Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion .github/workflows/call-test-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Loading