From: Øyvind Kolås Date: Wed, 23 Feb 2022 16:34:59 +0000 (+0100) Subject: ci: disable to save the environment X-Git-Tag: archive/raspbian/1%0.1.106-3+rpi1^2~15^2~3^2~6 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=0e4e63831553bac313781f8a61ab9f55710ab7ad;p=babl.git ci: disable to save the environment Arch linux continue to be a bit incompatible with the buildfarm, CI is already bad for the environment, cpu consuming expected failures are even worse. The CI might turn up again backed by debian, but it is better to turn it off for now. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 3bb72ab..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,48 +0,0 @@ -cache: - paths: - - _pacman_cache - -.build: - stage: build - image: archlinux:latest - variables: - PACMAN_CACHE: $CI_PROJECT_DIR/_pacman_cache - artifacts: - when: always - paths: - - _build/meson-logs - before_script: - - pacman -Syu --noconfirm --needed --cachedir $PACMAN_CACHE --ignore glibc - base-devel - git - gobject-introspection - meson - vala - pacman-contrib - ${EXTRA_PKGS} - script: - - meson _build - -D enable-f16c=true - -D enable-mmx=true - -D enable-sse=true - -D enable-sse2=true - -D enable-sse4_1=true - -D with-docs=true - ${EXTRA_OPTIONS} - - ninja -C _build - - ninja -C _build test - after_script: - # Remove all cached packages but the latest version - #- paccache -r -k1 --cachedir $PACMAN_CACHE - -latest-lcms: - extends: .build - variables: - EXTRA_OPTIONS : "-Dwith-lcms=true" - EXTRA_PKGS: "lcms2" - -latest-nolcms: - extends: .build - variables: - EXTRA_OPTIONS : "-Dwith-lcms=false" - EXTRA_PKGS: "" diff --git a/.gitlab-ci.yml-ignored b/.gitlab-ci.yml-ignored new file mode 100644 index 0000000..3bb72ab --- /dev/null +++ b/.gitlab-ci.yml-ignored @@ -0,0 +1,48 @@ +cache: + paths: + - _pacman_cache + +.build: + stage: build + image: archlinux:latest + variables: + PACMAN_CACHE: $CI_PROJECT_DIR/_pacman_cache + artifacts: + when: always + paths: + - _build/meson-logs + before_script: + - pacman -Syu --noconfirm --needed --cachedir $PACMAN_CACHE --ignore glibc + base-devel + git + gobject-introspection + meson + vala + pacman-contrib + ${EXTRA_PKGS} + script: + - meson _build + -D enable-f16c=true + -D enable-mmx=true + -D enable-sse=true + -D enable-sse2=true + -D enable-sse4_1=true + -D with-docs=true + ${EXTRA_OPTIONS} + - ninja -C _build + - ninja -C _build test + after_script: + # Remove all cached packages but the latest version + #- paccache -r -k1 --cachedir $PACMAN_CACHE + +latest-lcms: + extends: .build + variables: + EXTRA_OPTIONS : "-Dwith-lcms=true" + EXTRA_PKGS: "lcms2" + +latest-nolcms: + extends: .build + variables: + EXTRA_OPTIONS : "-Dwith-lcms=false" + EXTRA_PKGS: ""