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.openwrt.org/?a=commitdiff_plain;h=f535d770901674d7d9f3d8cd9abe566d9db63ebe;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 --- diff --git a/.github/workflows/multi-arch-test-build.yml b/.github/workflows/multi-arch-test-build.yml index ed6c22b7e7..5481007912 100644 --- a/.github/workflows/multi-arch-test-build.yml +++ b/.github/workflows/multi-arch-test-build.yml @@ -160,7 +160,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 }}