From: Paul Spooren Date: Thu, 13 Jan 2022 23:55:36 +0000 (+0100) Subject: CI: fix runtime testing for non master branch X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=bb09bc37b25ef94d06b550924c2fbeacf5863fcc;p=feed%2Fpackages.git CI: fix runtime testing for non master branch The runtime testing always ran on master branch aka snapshots since the branch wasn't passed over to the container execution! Signed-off-by: Paul Spooren (cherry picked from commit f535d770901674d7d9f3d8cd9abe566d9db63ebe) --- diff --git a/.github/workflows/multi-arch-test-build.yml b/.github/workflows/multi-arch-test-build.yml index cbd9663f8b..7181fb36ee 100644 --- a/.github/workflows/multi-arch-test-build.yml +++ b/.github/workflows/multi-arch-test-build.yml @@ -94,7 +94,7 @@ jobs: run: | docker build -t test-container --build-arg ARCH .github/workflows/ env: - ARCH: ${{ matrix.arch }} + ARCH: ${{ matrix.arch }}-${{ env.BRANCH }} - name: Test via Docker container if: ${{ matrix.runtime_test }}