summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiago De Franco <hiago.franco@toradex.com>2025-06-27 09:29:36 -0300
committerHiago De Franco <hiago.franco@toradex.com>2025-06-27 09:29:36 -0300
commit4b02fe14e421fedecefbf075feec33d6fece5892 (patch)
treeb34aafc7ffecb64c964f518feb5fa00f02cde3e2
parent2fa8c6349e9a1d965757d44f05a6c72687850b77 (diff)
gitlab-ci: remove filetoradex_imx_5.4.70_2.3.0
The Toradex imx-atf repo is not being used anymore by our layers in the latest Yocto LTS releases, and this file is currently creating issue with the Gitlab migration. Let's just remove this as it is not being used anymore. Signed-off-by: Hiago De Franco <hiago.franco@toradex.com>
-rw-r--r--.gitlab-ci.yml30
1 files changed, 0 insertions, 30 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index ece7e76e..00000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-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:
- - build-imx-atf
-
-build_imx-atf:
- stage: build-imx-atf
- image: $CI_IMAGE
- variables:
- GIT_STRATEGY: fetch
- GIT_DEPTH: "1"
- script: |
- source /select_64bit_toolchain.sh
- echo "GCC used to build binaries is"
- which ${CROSS_COMPILE}gcc
- ${CROSS_COMPILE}gcc --version
- echo -e "Arch is \e[36m$ARCH\e[39m"
- echo "Current directory: ${PWD}"
- echo "building with $THREADS parallel threads"
- for PLATFORM in imx8mm imx8qm imx8qx; do
- echo "make -j8 PLAT=$PLATFORM bl31"
- make -j8 PLAT=$PLATFORM bl31
- ls -l build/$PLATFORM/release/bl31.bin
- done