summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
Commit message (Collapse)AuthorAgeFilesLines
* CI: Do not require UID 1000 for our test userJulian Andres Klode2023-08-021-1/+1
| | | | | It seems the ubuntu:lunar image has a user with UID 1000 already which was not the case in previous versions.
* gitlab-ci: Install adduserJulian Andres Klode2022-12-081-2/+2
|
* Do not build documentation twice in CIDavid Kalnischkies2022-05-071-18/+15
| | | | | The documentation will not realistically vary between architectures so building it twice is just wasting time and resources.
* Run ./prepare-release post-build checks in Gitlab CIDavid Kalnischkies2022-05-071-0/+2
| | | | | The checks mostly deal with verifying the syntax of the documentation files and the po4a translations which have no tests otherwise.
* Avoid building inside the source dir in autopkgtestDavid Kalnischkies2022-05-071-0/+1
| | | | | | | | | autopkgtest says: Tests may not modify the source tree (and may not have write access to it). We don't really modify the source of course, but we created our build/ directory in the tree, which seems to work just fine (for now), but lets be nice.
* Try to show core dump info in test frameworkDavid Kalnischkies2021-08-281-2/+2
| | | | | | | | If the system tells us that a core dump was created we should try to display the contained info as that system might not be easily available when we see the error (like C-I or autopkgtest). Gbp-Dch: Ignore
* Revert "Branch of as 2.2.y for bullseye"Julian Andres Klode2021-03-011-2/+2
| | | | | This reverts commit d96c9a0280bffcfb0f4a319e003e9af60c6cfaf1. It is not correct for master.
* Branch of as 2.2.y for bullseyeJulian Andres Klode2021-02-231-2/+2
|
* CI: Run test as user on i386Julian Andres Klode2021-02-091-0/+1
|
* gitlab-ci: Use ccacheJulian Andres Klode2019-12-051-8/+13
|
* gitlab-ci: Do not do coverageJulian Andres Klode2019-12-041-6/+4
|
* CI: Use unstable for now, as we need triehash packageJulian Andres Klode2019-03-111-1/+1
|
* gitlab-ci: chmod 755 /rootJulian Andres Klode2018-06-251-0/+1
| | | | This should avoid test failures on ubuntu:bionic
* CI: Export DEBIAN_FRONTEND=noninteractive in all CI environmentsJulian Andres Klode2018-06-251-0/+2
| | | | This ensures that we don't hang waiting for debconf.
* Run tests on GitLab CIJulian Andres Klode2018-05-161-0/+33
Salsa has support for GitLab CI. This introduces a test setup for it, derived from the ones for shippable and travis. It is not optimal yet: The build is run in the test stage. Fixing this requires us to separate test from build dependencies, and storing build/ as an artifact of the build stage; since build and test stage run on different runners with fresh checkouts and images.