From 4774380e0b9bcad8ab8697627b90aeecc80285c8 Mon Sep 17 00:00:00 2001 From: David Holdeman Date: Fri, 17 Jul 2020 21:32:53 -0500 Subject: [PATCH] pass ini file (#1612) --- .github/workflows/build-firmware.yaml | 2 +- misc/jenkins/compile_other_versions/prepare_bundle.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-firmware.yaml b/.github/workflows/build-firmware.yaml index d3e4f72105..6df568e04d 100644 --- a/.github/workflows/build-firmware.yaml +++ b/.github/workflows/build-firmware.yaml @@ -124,7 +124,7 @@ jobs: - name: Package Bundle if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - run: bash misc/jenkins/compile_other_versions/prepare_bundle.sh ${{matrix.build-target}} + run: bash misc/jenkins/compile_other_versions/prepare_bundle.sh ${{matrix.build-target}} ${{matrix.ini-file}} - name: Upload bundle if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} diff --git a/misc/jenkins/compile_other_versions/prepare_bundle.sh b/misc/jenkins/compile_other_versions/prepare_bundle.sh index 959dcca840..e67dfc6cda 100644 --- a/misc/jenkins/compile_other_versions/prepare_bundle.sh +++ b/misc/jenkins/compile_other_versions/prepare_bundle.sh @@ -1,6 +1,7 @@ #!/bin/bash BUNDLE_NAME="$1" +export INI_FILE_OVERRIDE="$2" SCRIPT_NAME="prepare_bundle.sh" echo "Entering $SCRIPT_NAME with ${BUNDLE_NAME}" echo "RUSEFI_BUILD_FTP_USER=$RUSEFI_BUILD_FTP_USER"