Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/routing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Spooren <mail@aparcar.org>2022-01-14 02:55:36 +0300
committerPaul Spooren <mail@aparcar.org>2022-01-14 21:05:20 +0300
commit817240b07c7158c72de427051eb9bae1c39b3abe (patch)
tree456433d57978c4fdf865a2e70ba2ca3d09e1153a /.github
parent24285ce4fcd56aa806bdbe9ac16cbfed0a81d2f8 (diff)
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 <mail@aparcar.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/multi-arch-test-build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/multi-arch-test-build.yml b/.github/workflows/multi-arch-test-build.yml
index f254a8d..fb7265b 100644
--- a/.github/workflows/multi-arch-test-build.yml
+++ b/.github/workflows/multi-arch-test-build.yml
@@ -116,7 +116,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 }}