diff options
author | Paul Spooren <mail@aparcar.org> | 2020-12-27 13:13:45 -1000 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2020-12-28 15:45:03 -1000 |
commit | ce1de4c0f1df64c5265055584f0d9d1f5c8961e1 (patch) | |
tree | 6fdce9d0eeeb7b6231e705482196fd5c18dfd372 /.github | |
parent | 598e34a81ff00bea895f0ada3bd43c398dfd2211 (diff) |
CI: use SDK depending on destination branch
Not only use snapshot SDKs for master test but whatever destination
branch is used.
Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/multi-arch-test-build.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/multi-arch-test-build.yml b/.github/workflows/multi-arch-test-build.yml index 11cbc8096..a2cbf8bc4 100644 --- a/.github/workflows/multi-arch-test-build.yml +++ b/.github/workflows/multi-arch-test-build.yml @@ -2,8 +2,6 @@ name: Test Build on: pull_request: - branches: - - master jobs: build: @@ -48,10 +46,16 @@ jobs: echo "Building $PACKAGES" echo "PACKAGES=$PACKAGES" >> $GITHUB_ENV + - name: Determine branch name + run: | + BRANCH="${GITHUB_BASE_REF#refs/heads/}" + echo "Building for $BRANCH" + echo "BRANCH=$BRANCH" >> $GITHUB_ENV + - name: Build uses: openwrt/gh-action-sdk@v1 env: - ARCH: ${{ matrix.arch }} + ARCH: ${{ matrix.arch }}-${{ env.BRANCH }} FEEDNAME: packages_ci - name: Move created packages to project dir |