From 1fbf4da811aa7b16cc701e46e2d2eda7406e96d9 Mon Sep 17 00:00:00 2001 From: Stephan Fuhrmann Date: Sun, 14 Jan 2024 01:18:41 +0100 Subject: [PATCH] No DLF? --- .github/workflows/maven-integration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven-integration.yml b/.github/workflows/maven-integration.yml index fe4a24f..298949b 100644 --- a/.github/workflows/maven-integration.yml +++ b/.github/workflows/maven-integration.yml @@ -63,7 +63,7 @@ jobs: if: matrix.proxy == 'YES' - name: Run created binary run: | - ARGS="-client ${{ matrix.client }} -abort-after 100 deutschlandfunk -d deutschlandfunk" + ARGS="-client ${{ matrix.client }} -abort-after 100 240d28b9-7858-48d2-a816-9cf8e1875fe8 -d output" if [ "${{ matrix.proxy }}" = "YES" ]; then ARGS=$ARGS" -proxy http://localhost:3128/ " fi @@ -81,7 +81,7 @@ jobs: if: matrix.proxy == 'YES' - name: Test first mp3 file run: | - FIRST_MPEG=$(ls deutschlandfunk/*/*.mp3 | head -n1) + FIRST_MPEG=$(ls output/*/*.mp3 | head -n1) if [ ! -f "${FIRST_MPEG}" ]; then echo "Not a file: ${FIRST_MPEG}" exit 1 @@ -97,7 +97,7 @@ jobs: FILE_TYPE="$(file --brief --mime ${FIRST_MPEG})" if [ "${FILE_TYPE}" != "audio/mpeg; charset=binary" ]; then - echo "File type is wrong: $(file --mime $(ls deutschlandfunk/*/*.mp3 | head -n1))" + echo "File type is wrong: $(file --mime $(ls output/*/*.mp3 | head -n1))" exit 3 else echo "File type of ${FIRST_MPEG}: ${FILE_TYPE}"