diff options
author | louiz’ <louiz@louiz.org> | 2020-05-21 22:51:34 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2020-05-21 22:51:34 +0200 |
commit | 6ed9545abb415270d7120237e65141733815264b (patch) | |
tree | c0a3eaf70ec3bcd5d397dfbc0317737cf550f87d | |
parent | c7eb46b2ff5f2b67ac02e106c2d730e2d32accde (diff) | |
download | biboumi-6ed9545abb415270d7120237e65141733815264b.tar.gz biboumi-6ed9545abb415270d7120237e65141733815264b.tar.bz2 biboumi-6ed9545abb415270d7120237e65141733815264b.tar.xz biboumi-6ed9545abb415270d7120237e65141733815264b.zip |
ci: use the container tag instead of docker, for the build steps
This way, this will use either the docker or the podman runners.
The other steps still use only docker, because I didn’t solve the cache
issue on podman yet.
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7253fc8..1725ee9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,7 +36,7 @@ variables: extends: .sources_changed stage: build tags: - - docker + - container script: - "echo Running cmake with the following parameters: -DCMAKE_CXX_COMPILER=${COMPILER} -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ${BOTAN} ${UDNS} ${SYSTEMD} ${LIBIDN} ${SQLITE3} ${POSTGRESQL}" - mkdir build/ |