From e91c5828cbe538a85768c4c0a206258fd8f3ea15 Mon Sep 17 00:00:00 2001 From: Johannes Schauer Marin Rodrigues <josch@mister-muffin.de> Date: Thu, 19 Jan 2023 14:25:43 +0100 Subject: [PATCH] .gitlab-ci.yml: re-use build.sh to avoid maintaining the list of necessary environment variables in two places --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b8bb49b235f..5a7ad9cacca 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,7 +5,7 @@ build: - apt-get update - apt-get --yes install --no-install-recommends gcc-aarch64-linux-gnu build-essential bison flex device-tree-compiler - cp mntreform-config .config - - env CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm make flash.bin + - ./build.sh artifacts: paths: - "flash.bin" -- GitLab