Commit Graph

15 Commits

Author SHA1 Message Date
Paul Spooren a592e95dc1 CI: fix handling of release branches
The "changed package" logic triggers all packages changed since
`origin/master` while for releases branches all changes since e.g.
`origin/openwrt-21.02` should be considered.

First figure out the active branch, then find changed packages.

Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-03-01 11:41:18 -10:00
Ilya Lipnitskiy a2b08b5cbf CI: enhance package detection logic
Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
2021-02-23 20:17:30 -10:00
Rosen Penev 1f25c9c25f CI: switch back to ARCHS
Upstream wants to remove ARC700. That and currently, ARC700 is not
compiling with glibc.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-30 14:38:43 -10:00
Paul Spooren ce1de4c0f1 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>
2020-12-28 15:45:03 -10:00
Paul Spooren bd3320e8de CI: test aarch64_cortex-a53 instead of _generic
The aarch64_cortex-a53 architecture is used by more targets and should
therefore be tested rather than the relatively rare _generic one.

Signed-off-by: Paul Spooren <mail@aparcar.org>
2020-12-15 08:25:31 -10:00
Rosen Penev edadb7726a
github: test i386_pentium-mmx instead of pentium4
It seems the former causes more compilation failures due to not having
SSE.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-10 16:08:23 -08:00
Josef Schlehofer b1b11e155e CI: fix CVE-2020-15228
More details:
https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2020-10-16 08:15:53 -10:00
Rosen Penev ba147d0d40 actions: remove arm_cortex-a9_neon
This is the second ARM NEON target that is tested. It's unlikely that
one will fail and the other succeed.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-10-09 18:50:57 -10:00
Rosen Penev 527b3e2119 CI: get rid of the arc_archs buildbot
Both ARC platforms are not useful. One is enough for uClibc-ng.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-09-29 22:54:20 -10:00
Paul Spooren b36bb173b3 CI: run also on test.sh changes
The CI only tests packages if a Makefile changed, e.g. containing a
version or release bump. This covers package related files as at least
the package release must change whenever a file was touched.

The `test.sh` file is a runtime test used to verify working packages
within OpenWrt containers. This file can independently change and will
never be included in the package ipk files, therefore trigger the CI on
its changes as well.

Signed-off-by: Paul Spooren <mail@aparcar.org>
2020-09-17 09:05:16 -10:00
Paul Spooren da111fd095 CI: add runtime tests for packages
Additional to manual runtime tests this CI addition runs a custom test
script per package. Ideally this lowers the errors of package bumps,
something which is time consuming when done manually for multiple
architectures.

This CI uses the official OpenWrt containers and tries to install and
run compiled packages. The run depends on the content of `test.sh`,
which is an `ash` script. It's called with the *packge name* and
*package version* as arguments. This allows different behaviour if
a single package generates multiple IPK files. The version is usable for
the most trivial runtime check, e.g. `tmux -V | grep "$2"`.

The current approach uses the qus project[1] which contains multiple
QEMU binaries to run various architectures.

[1]: https://github.com/dbhi/qus

Signed-off-by: Paul Spooren <mail@aparcar.org>
2020-09-16 10:40:16 -10:00
Paul Spooren 43f4ebb532 CI: add compile test for arc_archs
A package recently failed building exclusively for this architecture,
therefore test it as well.

Signed-off-by: Paul Spooren <mail@aparcar.org>
2020-09-12 14:16:11 -10:00
Paul Spooren 69c91a23a5 CI: fix compilation of all packages
By using `feeds install -d y` the CI tries to install e.g. `libcxx`
which fails, unrelated to the tested packages. Now follow the approach
of the current CircleCI implementation.

Signed-off-by: Paul Spooren <mail@aparcar.org>
2020-09-08 11:02:27 -10:00
Paul Spooren b4c70ed7dd 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>
2020-09-05 13:21:04 -10:00
Paul Spooren b787aa9c81 CI: use GitHub action for Pull Requests
Test all GitHub pull requests for multiple architectures and store build
logs and created packages. This is the first commit of a series of
patches to simplify the life of maintainers.

Signed-off-by: Paul Spooren <mail@aparcar.org>
2020-09-04 15:36:07 -10:00