diff options
author | Hiago De Franco <hiago.franco@toradex.com> | 2025-06-27 09:29:36 -0300 |
---|---|---|
committer | Hiago De Franco <hiago.franco@toradex.com> | 2025-06-27 09:33:16 -0300 |
commit | 6237335ca316797e92c0d2ac51c982d10ef5f523 (patch) | |
tree | 0b1125fd6861b0b73965531e245947d19b9dbdbe | |
parent | 0a236bda5e863b523371e039ca7178d8340992f5 (diff) |
gitlab-ci: remove filetoradex_imx_5.4.24_2.1.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.yml | 30 |
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 |