From a1b8586011009908d7149ca5ae8ad60278d7f63e Mon Sep 17 00:00:00 2001 From: nrb <freifunk@nicoboehr.de> Date: Sun, 23 May 2021 23:59:07 +0200 Subject: [PATCH] ci: fix syntax --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d03e045a1..ef9c6b627 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,9 +23,6 @@ defaults: - git -C ffs-openwrt-dl-cache pull - rm -rf gluon/openwrt/dl && mkdir -p gluon/openwrt && ln -s ../../ffs-openwrt-dl-cache gluon/openwrt/dl - rm -rf gluon/openwrt/staging_dir && mkdir -p staging_dir && ln -s ../../staging_dir gluon/openwrt/staging_dir - script: - - make -C gluon GLUON_SITEDIR="$CI_PROJECT_DIR" GLUON_TARGET="$GLUON_TARGET" GLUON_BRANCH=stable FFS_BUILD_DATE=$(cat build.date) BROKEN="$BROKEN" V=1 -j`nproc` - - cd gluon/openwrt/dl && git add . && git commit -m "update DL cache" && git push || true generate_date: stage: generate_date @@ -55,6 +52,9 @@ update: stage: build except: - tags + script: + - make -C gluon GLUON_SITEDIR="$CI_PROJECT_DIR" GLUON_TARGET="$GLUON_TARGET" GLUON_BRANCH=stable FFS_BUILD_DATE=$(cat build.date) BROKEN="$BROKEN" V=1 -j`nproc` + - cd gluon/openwrt/dl && git add . && git commit -m "update DL cache" && git push || true artifacts: paths: - gluon/output/ -- GitLab