Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] .gitlab-ci.yml: use image with flake8
@ 2018-03-30 23:10 Ricardo Martincoski
  2018-03-31  8:52 ` Yann E. MORIN
  2018-03-31 20:48 ` Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Ricardo Martincoski @ 2018-03-30 23:10 UTC (permalink / raw)
  To: buildroot

Bump the docker image to the latest tag to have flake8 pre-installed.

Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Peter Korsgaard <peter@korsgaard.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Yann E. MORIN <yann.morin.1998@free.fr>
---
After this, please consider applying this patch, currently in Deferred state:
http://patchwork.ozlabs.org/patch/884978/ ".gitlab-ci.yml: check flake8"

With this patch and also the other patch mentioned above, here is the new job:
https://gitlab.com/RicardoMartincoski/buildroot/-/jobs/60447043
which is part of a full build:
https://gitlab.com/RicardoMartincoski/buildroot/pipelines/19771580
---
 .gitlab-ci.yml    | 2 +-
 .gitlab-ci.yml.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 952fffaf88..2d9929ba11 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,7 +4,7 @@
 # It needs to be regenerated every time a defconfig is added, using
 # "make .gitlab-ci.yml".
 
-image: buildroot/base:20180205.0730
+image: buildroot/base:20180318.1724
 
 .defconfig_script: &defconfig_script
     - echo 'Configure Buildroot'
diff --git a/.gitlab-ci.yml.in b/.gitlab-ci.yml.in
index cb3eb715f2..c0e9563f2f 100644
--- a/.gitlab-ci.yml.in
+++ b/.gitlab-ci.yml.in
@@ -4,7 +4,7 @@
 # It needs to be regenerated every time a defconfig is added, using
 # "make .gitlab-ci.yml".
 
-image: buildroot/base:20180205.0730
+image: buildroot/base:20180318.1724
 
 .defconfig_script: &defconfig_script
     - echo 'Configure Buildroot'
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/1] .gitlab-ci.yml: use image with flake8
  2018-03-30 23:10 [Buildroot] [PATCH 1/1] .gitlab-ci.yml: use image with flake8 Ricardo Martincoski
@ 2018-03-31  8:52 ` Yann E. MORIN
  2018-03-31 20:48 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2018-03-31  8:52 UTC (permalink / raw)
  To: buildroot

Ricardo, All,

On 2018-03-30 20:10 -0300, Ricardo Martincoski spake thusly:
> Bump the docker image to the latest tag to have flake8 pre-installed.
> 
> Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
> Cc: Arnout Vandecappelle <arnout@mind.be>
> Cc: Peter Korsgaard <peter@korsgaard.com>
> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> Cc: Yann E. MORIN <yann.morin.1998@free.fr>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

> ---
> After this, please consider applying this patch, currently in Deferred state:
> http://patchwork.ozlabs.org/patch/884978/ ".gitlab-ci.yml: check flake8"

I've marked it as New again, now. Thanks. :-)

Regards,
Yann E. MORIN.

> With this patch and also the other patch mentioned above, here is the new job:
> https://gitlab.com/RicardoMartincoski/buildroot/-/jobs/60447043
> which is part of a full build:
> https://gitlab.com/RicardoMartincoski/buildroot/pipelines/19771580
> ---
>  .gitlab-ci.yml    | 2 +-
>  .gitlab-ci.yml.in | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index 952fffaf88..2d9929ba11 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -4,7 +4,7 @@
>  # It needs to be regenerated every time a defconfig is added, using
>  # "make .gitlab-ci.yml".
>  
> -image: buildroot/base:20180205.0730
> +image: buildroot/base:20180318.1724
>  
>  .defconfig_script: &defconfig_script
>      - echo 'Configure Buildroot'
> diff --git a/.gitlab-ci.yml.in b/.gitlab-ci.yml.in
> index cb3eb715f2..c0e9563f2f 100644
> --- a/.gitlab-ci.yml.in
> +++ b/.gitlab-ci.yml.in
> @@ -4,7 +4,7 @@
>  # It needs to be regenerated every time a defconfig is added, using
>  # "make .gitlab-ci.yml".
>  
> -image: buildroot/base:20180205.0730
> +image: buildroot/base:20180318.1724
>  
>  .defconfig_script: &defconfig_script
>      - echo 'Configure Buildroot'
> -- 
> 2.14.1
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/1] .gitlab-ci.yml: use image with flake8
  2018-03-30 23:10 [Buildroot] [PATCH 1/1] .gitlab-ci.yml: use image with flake8 Ricardo Martincoski
  2018-03-31  8:52 ` Yann E. MORIN
@ 2018-03-31 20:48 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2018-03-31 20:48 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 30 Mar 2018 20:10:55 -0300, Ricardo Martincoski wrote:
> Bump the docker image to the latest tag to have flake8 pre-installed.
> 
> Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
> Cc: Arnout Vandecappelle <arnout@mind.be>
> Cc: Peter Korsgaard <peter@korsgaard.com>
> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> Cc: Yann E. MORIN <yann.morin.1998@free.fr>
> ---
> After this, please consider applying this patch, currently in Deferred state:
> http://patchwork.ozlabs.org/patch/884978/ ".gitlab-ci.yml: check flake8"

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-03-31 20:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-30 23:10 [Buildroot] [PATCH 1/1] .gitlab-ci.yml: use image with flake8 Ricardo Martincoski
2018-03-31  8:52 ` Yann E. MORIN
2018-03-31 20:48 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox