From f15cf00fb6339fd1b01a964393a620fc5804cbfb Mon Sep 17 00:00:00 2001 From: Oleksandr Suvorov Date: Tue, 24 Nov 2020 19:31:54 +0200 Subject: overlays: gitlab-ci: add a CI/CD stub Add the empty stub to pass CI/CD checking. Signed-off-by: Oleksandr Suvorov --- .gitlab-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..0e70af0 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,22 @@ +variables: +# uncomment for the pipeline debug purpose + CI_DEBUG_TRACE: "true" + CI_IMAGE: gitlab.int.toradex.com:4567/philippe.schenker/linux-toradex/ci-kernel-builder:gcc9 + DOCKER_HOST: tcp://docker:2375 + DOCKER_DRIVER: overlay2 + DOCKER_TLS_CERTDIR: "" + +stages: + - empty-stub + +prepare_kernel: + stage: empty-stub + image: $CI_IMAGE + variables: + GIT_STRATEGY: fetch + GIT_DEPTH: "1" + script: | + echo "Just return true. For now it is too tough to implement a real overlay checking." + echo "It depends on possibly unmerged changes in the corresponding branch of linux kernel." + true + -- cgit v1.2.3