[Armadeus-commitlog] armadeus branch, master, updated. armadeus-7.0-342-g4e488ac5d
Brought to you by:
sszy
|
From: Sébastien S. <ss...@us...> - 2022-09-21 07:53:44
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 4e488ac5d69113ce30f9a1f80f9177f944d76b51 (commit)
via c0d2d0b9cb59583e2965a0872c7b1622d3919859 (commit)
via b9ab3b5dbf71af124ab62163a8c3a94a7356742f (commit)
from 48145849b7b82f2786ff7bcb92d1be9a24d450ce (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 4e488ac5d69113ce30f9a1f80f9177f944d76b51
Merge: 48145849b c0d2d0b9c
Author: Kevin JOLY <kev...@po...>
Date: Wed Sep 21 07:53:14 2022 +0000
Merge branch 'improve-ci' into 'master'
Improve ci
See merge request armadeus/armadeus-bsp!2
commit c0d2d0b9cb59583e2965a0872c7b1622d3919859
Author: Kevin Joly <kev...@ar...>
Date: Tue Sep 20 11:55:42 2022 +0200
Keep artifacts only for scheduled pipelines
commit b9ab3b5dbf71af124ab62163a8c3a94a7356742f
Author: Kevin Joly <kev...@ar...>
Date: Tue Sep 20 11:21:35 2022 +0200
Do not build docker image
-----------------------------------------------------------------------
Summary of changes:
.gitlab-ci.yml | 29 ++++++++++++-----------------
1 file changed, 12 insertions(+), 17 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 30a02fcca..4bebe4dda 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,27 +11,12 @@ variables:
DOCKER_TLS_CERTDIR: "/certs"
stages:
- - docker build
- build
-services:
- - docker:20.10.16-dind
-
-docker build:
- stage: docker build
- script:
- - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
- - docker build -t registry.gitlab.com/armadeus/armadeus-bsp docker
- - docker push registry.gitlab.com/armadeus/armadeus-bsp
- rules:
- - if: $CI_PIPELINE_SOURCE != "merge_request_event"
- changes:
- - docker/Dockerfile
-
-build:
+.build_template:
+ stage: build
image:
name: registry.gitlab.com/armadeus/armadeus-bsp:latest
- stage: build
cache:
key: armadeus-bsp-packages
paths:
@@ -44,6 +29,16 @@ build:
matrix:
- ARMADEUS_PLATFORM: [apf27, apf28, apf51, apf6, opos6ul, opos6ulnano, opos8mm-legacy-5.10]
timeout: 4h
+
+build:
+ except:
+ - schedules
+ extends: .build_template
+
+build-weekly:
+ only:
+ - schedules
+ extends: .build_template
artifacts:
name: "$ARMADEUS_PLATFORM-$CI_COMMIT_SHORT_SHA-images"
paths:
hooks/post-receive
--
armadeus
|