aboutsummaryrefslogtreecommitdiff
path: root/.circleci
Commit message (Collapse)AuthorAge
* CircleCI: Switch to ath79 SDKRosen Penev2019-05-17
| | | | | | | The default target in OpenWrt has been switched to ath79. Match it here. No functional difference. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* CircleCI: Filter out Makefile in files and src directories when checking for ↵Ted Hess2018-12-29
| | | | | | modified packages Signed-off-by: Ted Hess <thess@kitschensync.net>
* CircleCI: Add bzr to Docker image. Update to v1.0.2Ted Hess2018-12-18
| | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* CircleCI: Remove version info from SDK filename.Ted Hess2018-12-17
| | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* CircleCI: Update SDK / gcc version bumpTed Hess2018-12-15
| | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* CircleCI: Fix Debian grep compatibilityTed Hess2018-12-15
| | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* CircleCI: Allow '+' in package name subject checkTed Hess2018-12-15
| | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* CircleCI: Add package checks and HASH verify from Travis. Fix build log ↵Ted Hess2018-12-09
| | | | | | generation. Signed-off-by: Ted Hess <thess@kitschensync.net>
* CircleCI: Do not run build as root. Move to public docker repo.Ted Hess2018-12-05
| | | | | | | | | Change docker hub repository to 'openwrtorg'. Create and use non-root user 'build'. Add xz-utils and unzip. Use version numbers for docker images (SHA has no sense of time). Disable pipefail in build step Signed-off-by: Ted Hess <thess@kitschensync.net>
* build,circleci: Updates with additional checks from travis scripts.Ted Hess2018-11-24
| | | | | | | | | | | | Checking: - Pull request does not contain unwanted merges - signed-off-by tag exists and matches author - Subject line has package name - Author name has 'firstname lastname' (no nicknames) Signed-off-by: Ted Hess <thess@kitschensync.net> [Use git instead of CircleCI variables] Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* build,circleci: add curl & wget to base imageEtienne Champetier2018-11-24
| | | | | | curl was present in latest image but seems to have been remove from latest debian:9 Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* CircleCI: Fix URL references to openwrt.orgTed Hess2018-11-13
| | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* build,circleci: fix container digestEtienne Champetier2018-11-03
| | | | | | | I used podman/buildah to build this image, and the local sha256 is not the same than the docker hub sha256. The layers are the same, so maybe just docker hub changing the manifest Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* build,circleci: add 'time' to container build imageEtienne Champetier2018-11-03
| | | | Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* build,circleci: make BRANCH a variableEtienne Champetier2018-10-29
| | | | Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* build,circleci: add python to docker build imageEtienne Champetier2018-10-29
| | | | | | This is needed to build ca-certificates Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* build,circleci: enable CircleCI workflowsEtienne Champetier2018-10-28
| | | | Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* build,circleci: change exclude patternEtienne Champetier2018-10-28
| | | | | | | | | | | | Even when configured to only build PR, CircleCI always build the default branch `only: /pull.*/` seems like a good idea, but it fails when: - you are testing on the same repo, because github doesn't create a pull branch - when your repo is configured, because it see the push on your repo, prevent building this commit because it doesn't match the regexp, then when you do the PR CircleCI doesn't work In the end what we really want is `ignore: master` Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* build,circleci: fixup pkgs list generationEtienne Champetier2018-10-28
| | | | Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* build,circleci: make compile verbose to avoid timeoutEtienne Champetier2018-10-23
| | | | Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* build: add CircleCIEtienne Champetier2018-10-23
The big advantages are: - everyone can download the build logs and the ipks - we use our own docker image - people with commit access can ssh into the build env The disadvantages: - need to push new commits to restart the build I haven't reimplemented the commit message checks as this should be replaced with a separate script doing only that so we can require it (https://help.github.com/articles/enabling-required-status-checks/) Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>