CI: fix artifact folder and add more test SDKs
The CI adds the `packages.git` repository to the `feeds.conf`, which makes the repository redundant. Once called `packages` including the upstream status, once `packages_ci` (previously `action`) including the PRs changes. This commit changes the binary artifact folder from `packages` to `packages_ci`, as the SDK choses packages from the modified PR branch over the `packages` branch. Also add additional targets to test, as each target only takes a few minutes to test: aarch64_cortex-a53, arm_cortex-a15_neon-vfpv4 and i386_pentium4. Signed-off-by: Paul Spooren <mail@aparcar.org>
This commit is contained in:
parent
667c77e24d
commit
b4c70ed7dd
1 changed files with 8 additions and 5 deletions
13
.github/workflows/multi-arch-test-build.yml
vendored
13
.github/workflows/multi-arch-test-build.yml
vendored
|
@ -13,14 +13,16 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
arch:
|
arch:
|
||||||
- x86_64
|
- aarch64_generic
|
||||||
- mips_24kc
|
- arc_arc700
|
||||||
|
- arm_cortex-a15_neon-vfpv4
|
||||||
- arm_cortex-a9_neon
|
- arm_cortex-a9_neon
|
||||||
- arm_cortex-a9_vfpv3-d16
|
- arm_cortex-a9_vfpv3-d16
|
||||||
- arc_arc700
|
- i386_pentium4
|
||||||
- aarch64_generic
|
- mips_24kc
|
||||||
- powerpc_464fp
|
- powerpc_464fp
|
||||||
- powerpc_8540
|
- powerpc_8540
|
||||||
|
- x86_64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -42,6 +44,7 @@ jobs:
|
||||||
env:
|
env:
|
||||||
ARCH: ${{ matrix.arch }}
|
ARCH: ${{ matrix.arch }}
|
||||||
BUILD_LOG: 1
|
BUILD_LOG: 1
|
||||||
|
FEEDNAME: packages_ci
|
||||||
IGNORE_ERRORS: ""
|
IGNORE_ERRORS: ""
|
||||||
V: s
|
V: s
|
||||||
|
|
||||||
|
@ -49,7 +52,7 @@ jobs:
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ matrix.arch}}-packages
|
name: ${{ matrix.arch}}-packages
|
||||||
path: bin/packages/${{ matrix.arch }}/packages/*.ipk
|
path: bin/packages/${{ matrix.arch }}/packages_ci/*.ipk
|
||||||
|
|
||||||
- name: Store logs
|
- name: Store logs
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
|
|
Loading…
Reference in a new issue