diff options
author | Eric Engestrom <eric.engestrom@intel.com> | 2019-08-06 11:28:31 +0100 |
---|---|---|
committer | Eric Engestrom <eric.engestrom@intel.com> | 2019-08-09 20:07:50 +0100 |
commit | 9be5ce1d736f1fc13de26533a0ffb2e57137c304 (patch) | |
tree | 735f3f5c6d35b22ea6e056c0f4a1cfd0c2f88dd9 /.gitlab-ci.yml | |
parent | 9bc99e60a879d163c052e92d83db0734352f71d5 (diff) | |
download | mesa-9be5ce1d736f1fc13de26533a0ffb2e57137c304.tar.gz |
gitlab-ci: generate meson cross-files earlier
Suggested-by: Michel Dänzer <michel@daenzer.net>
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 10e6c4e99b9..69dd3fa0a66 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,7 @@ # repository's registry will be used there as well. variables: UPSTREAM_REPO: mesa/mesa - DEBIAN_TAG: "2019-08-07" + DEBIAN_TAG: "2019-08-08" DEBIAN_VERSION: stretch-slim DEBIAN_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TAG" @@ -251,19 +251,13 @@ meson-vulkan: -D gallium-xa=false -D gallium-nine=false -D llvm=false - CROSS: > - --cross /tmp/cross_file.txt - script: - - /usr/share/meson/debcrossgen --arch ${ARCH} -o /tmp/cross_file.txt - # Work around a bug in debcrossgen that should be fixed in the next release - - sed -i "s|cpu_family = 'i686'|cpu_family = 'x86'|g" /tmp/cross_file.txt - .gitlab-ci/meson-build.sh meson-armhf: extends: .meson-cross variables: - ARCH: armhf + CROSS: --cross /cross_file-armhf.txt VULKAN_DRIVERS: freedreno GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,tegra,v3d,vc4" # Disable the tests since we're cross compiling. @@ -275,7 +269,7 @@ meson-armhf: meson-arm64: extends: .meson-cross variables: - ARCH: arm64 + CROSS: --cross /cross_file-arm64.txt VULKAN_DRIVERS: freedreno GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,tegra,v3d,vc4" # Disable the tests since we're cross compiling. @@ -287,7 +281,7 @@ meson-arm64: meson-i386: extends: .meson-cross variables: - ARCH: i386 + CROSS: --cross /cross_file-i386.txt VULKAN_DRIVERS: intel GALLIUM_DRIVERS: "swrast" # Disable i386 tests, because u_format_tests gets precision |