perfbook.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] utilities/gitlab-ci: Fully update system before building
@ 2023-08-04 17:46 Leonardo Bras
  2023-08-04 17:53 ` Leonardo Brás
  0 siblings, 1 reply; 8+ messages in thread
From: Leonardo Bras @ 2023-08-04 17:46 UTC (permalink / raw)
  To: Paul E . McKenney; +Cc: Leonardo Bras, Akira Yokosawa, perfbook

Some recent CI errors come from the incompatibility between packages
pre-installed in the docker image and the ones installed via pacman.

To avoid this, make a full system upgrade when installing the needed
packages.

Signed-off-by: Leonardo Bras <leobras.c@gmail.com>
---
 utilities/gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/utilities/gitlab-ci.yml b/utilities/gitlab-ci.yml
index 544b9373..bcda8712 100644
--- a/utilities/gitlab-ci.yml
+++ b/utilities/gitlab-ci.yml
@@ -9,7 +9,7 @@ test_codesamples:
     stage: test
 
     before_script:
-        - pacman --noconfirm -Sy make gcc liburcu
+        - pacman --noconfirm -Syu make gcc liburcu
 
     script:
         - make -C CodeSamples/
@@ -19,7 +19,7 @@ generate_pdfs:
     stage: build
 
     before_script:
-        - pacman --noconfirm -Sy texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
+        - pacman --noconfirm -Syu texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
         - mkdir -p ~/.local/share/fonts && cp fonts/steel-city-comic.regular.ttf ~/.local/share/fonts/ && fc-cache
 
     script:
-- 
2.41.0


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

* Re: [PATCH] utilities/gitlab-ci: Fully update system before building
  2023-08-04 17:46 [PATCH] utilities/gitlab-ci: Fully update system before building Leonardo Bras
@ 2023-08-04 17:53 ` Leonardo Brás
  2023-08-04 18:05   ` Paul E. McKenney
  0 siblings, 1 reply; 8+ messages in thread
From: Leonardo Brás @ 2023-08-04 17:53 UTC (permalink / raw)
  To: Paul E . McKenney; +Cc: Akira Yokosawa, perfbook

On Fri, 2023-08-04 at 14:46 -0300, Leonardo Bras wrote:
> Some recent CI errors come from the incompatibility between packages
> pre-installed in the docker image and the ones installed via pacman.
> 
> To avoid this, make a full system upgrade when installing the needed
> packages.
> 
> Signed-off-by: Leonardo Bras <leobras.c@gmail.com>
> ---
>  utilities/gitlab-ci.yml | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/utilities/gitlab-ci.yml b/utilities/gitlab-ci.yml
> index 544b9373..bcda8712 100644
> --- a/utilities/gitlab-ci.yml
> +++ b/utilities/gitlab-ci.yml
> @@ -9,7 +9,7 @@ test_codesamples:
>      stage: test
>  
>      before_script:
> -        - pacman --noconfirm -Sy make gcc liburcu
> +        - pacman --noconfirm -Syu make gcc liburcu
>  
>      script:
>          - make -C CodeSamples/
> @@ -19,7 +19,7 @@ generate_pdfs:
>      stage: build
>  
>      before_script:
> -        - pacman --noconfirm -Sy texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
> +        - pacman --noconfirm -Syu texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
>          - mkdir -p ~/.local/share/fonts && cp fonts/steel-city-comic.regular.ttf ~/.local/share/fonts/ && fc-cache
>  
>      script:

Sorry about resending. 
I had an issue with credentials, please ignore the ones sent from my employer
account: the gmail is the correct one.

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

* Re: [PATCH] utilities/gitlab-ci: Fully update system before building
  2023-08-04 17:53 ` Leonardo Brás
@ 2023-08-04 18:05   ` Paul E. McKenney
  2023-08-05  3:16     ` Leonardo Brás
  0 siblings, 1 reply; 8+ messages in thread
From: Paul E. McKenney @ 2023-08-04 18:05 UTC (permalink / raw)
  To: Leonardo Brás; +Cc: Akira Yokosawa, perfbook

On Fri, Aug 04, 2023 at 02:53:04PM -0300, Leonardo Brás wrote:
> On Fri, 2023-08-04 at 14:46 -0300, Leonardo Bras wrote:
> > Some recent CI errors come from the incompatibility between packages
> > pre-installed in the docker image and the ones installed via pacman.
> > 
> > To avoid this, make a full system upgrade when installing the needed
> > packages.
> > 
> > Signed-off-by: Leonardo Bras <leobras.c@gmail.com>
> > ---
> >  utilities/gitlab-ci.yml | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/utilities/gitlab-ci.yml b/utilities/gitlab-ci.yml
> > index 544b9373..bcda8712 100644
> > --- a/utilities/gitlab-ci.yml
> > +++ b/utilities/gitlab-ci.yml
> > @@ -9,7 +9,7 @@ test_codesamples:
> >      stage: test
> >  
> >      before_script:
> > -        - pacman --noconfirm -Sy make gcc liburcu
> > +        - pacman --noconfirm -Syu make gcc liburcu
> >  
> >      script:
> >          - make -C CodeSamples/
> > @@ -19,7 +19,7 @@ generate_pdfs:
> >      stage: build
> >  
> >      before_script:
> > -        - pacman --noconfirm -Sy texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
> > +        - pacman --noconfirm -Syu texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
> >          - mkdir -p ~/.local/share/fonts && cp fonts/steel-city-comic.regular.ttf ~/.local/share/fonts/ && fc-cache
> >  
> >      script:
> 
> Sorry about resending. 
> I had an issue with credentials, please ignore the ones sent from my employer
> account: the gmail is the correct one.

Ah, I queued the wrong one.  I updated it and pushed it out, could you
please double check?

							Thanx, Paul

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

* Re: [PATCH] utilities/gitlab-ci: Fully update system before building
  2023-08-04 18:05   ` Paul E. McKenney
@ 2023-08-05  3:16     ` Leonardo Brás
  2023-08-06  4:54       ` Paul E. McKenney
  0 siblings, 1 reply; 8+ messages in thread
From: Leonardo Brás @ 2023-08-05  3:16 UTC (permalink / raw)
  To: paulmck; +Cc: Akira Yokosawa, perfbook

On Fri, 2023-08-04 at 11:05 -0700, Paul E. McKenney wrote:
> On Fri, Aug 04, 2023 at 02:53:04PM -0300, Leonardo Brás wrote:
> > On Fri, 2023-08-04 at 14:46 -0300, Leonardo Bras wrote:
> > > Some recent CI errors come from the incompatibility between packages
> > > pre-installed in the docker image and the ones installed via pacman.
> > > 
> > > To avoid this, make a full system upgrade when installing the needed
> > > packages.
> > > 
> > > Signed-off-by: Leonardo Bras <leobras.c@gmail.com>
> > > ---
> > >  utilities/gitlab-ci.yml | 4 ++--
> > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > > 
> > > diff --git a/utilities/gitlab-ci.yml b/utilities/gitlab-ci.yml
> > > index 544b9373..bcda8712 100644
> > > --- a/utilities/gitlab-ci.yml
> > > +++ b/utilities/gitlab-ci.yml
> > > @@ -9,7 +9,7 @@ test_codesamples:
> > >      stage: test
> > >  
> > >      before_script:
> > > -        - pacman --noconfirm -Sy make gcc liburcu
> > > +        - pacman --noconfirm -Syu make gcc liburcu
> > >  
> > >      script:
> > >          - make -C CodeSamples/
> > > @@ -19,7 +19,7 @@ generate_pdfs:
> > >      stage: build
> > >  
> > >      before_script:
> > > -        - pacman --noconfirm -Sy texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
> > > +        - pacman --noconfirm -Syu texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
> > >          - mkdir -p ~/.local/share/fonts && cp fonts/steel-city-comic.regular.ttf ~/.local/share/fonts/ && fc-cache
> > >  
> > >      script:
> > 
> > Sorry about resending. 
> > I had an issue with credentials, please ignore the ones sent from my employer
> > account: the gmail is the correct one.
> 
> Ah, I queued the wrong one.  I updated it and pushed it out, could you
> please double check?

Yeap, it's correct. Thanks!

(Sorry about the overhead)


Leo

> 
> 							Thanx, Paul


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

* Re: [PATCH] utilities/gitlab-ci: Fully update system before building
  2023-08-05  3:16     ` Leonardo Brás
@ 2023-08-06  4:54       ` Paul E. McKenney
  0 siblings, 0 replies; 8+ messages in thread
From: Paul E. McKenney @ 2023-08-06  4:54 UTC (permalink / raw)
  To: Leonardo Brás; +Cc: Akira Yokosawa, perfbook

On Sat, Aug 05, 2023 at 12:16:04AM -0300, Leonardo Brás wrote:
> On Fri, 2023-08-04 at 11:05 -0700, Paul E. McKenney wrote:
> > On Fri, Aug 04, 2023 at 02:53:04PM -0300, Leonardo Brás wrote:
> > > On Fri, 2023-08-04 at 14:46 -0300, Leonardo Bras wrote:
> > > > Some recent CI errors come from the incompatibility between packages
> > > > pre-installed in the docker image and the ones installed via pacman.
> > > > 
> > > > To avoid this, make a full system upgrade when installing the needed
> > > > packages.
> > > > 
> > > > Signed-off-by: Leonardo Bras <leobras.c@gmail.com>
> > > > ---
> > > >  utilities/gitlab-ci.yml | 4 ++--
> > > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > > > 
> > > > diff --git a/utilities/gitlab-ci.yml b/utilities/gitlab-ci.yml
> > > > index 544b9373..bcda8712 100644
> > > > --- a/utilities/gitlab-ci.yml
> > > > +++ b/utilities/gitlab-ci.yml
> > > > @@ -9,7 +9,7 @@ test_codesamples:
> > > >      stage: test
> > > >  
> > > >      before_script:
> > > > -        - pacman --noconfirm -Sy make gcc liburcu
> > > > +        - pacman --noconfirm -Syu make gcc liburcu
> > > >  
> > > >      script:
> > > >          - make -C CodeSamples/
> > > > @@ -19,7 +19,7 @@ generate_pdfs:
> > > >      stage: build
> > > >  
> > > >      before_script:
> > > > -        - pacman --noconfirm -Sy texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
> > > > +        - pacman --noconfirm -Syu texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
> > > >          - mkdir -p ~/.local/share/fonts && cp fonts/steel-city-comic.regular.ttf ~/.local/share/fonts/ && fc-cache
> > > >  
> > > >      script:
> > > 
> > > Sorry about resending. 
> > > I had an issue with credentials, please ignore the ones sent from my employer
> > > account: the gmail is the correct one.
> > 
> > Ah, I queued the wrong one.  I updated it and pushed it out, could you
> > please double check?
> 
> Yeap, it's correct. Thanks!
> 
> (Sorry about the overhead)

No problem, as long as we have it set up correctly.  ;-)

							Thanx, Paul

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

* Re: [PATCH] utilities/gitlab-ci: Fully update system before building
  2023-08-04 17:41 Leonardo Bras
@ 2023-08-04 17:54 ` Paul E. McKenney
  0 siblings, 0 replies; 8+ messages in thread
From: Paul E. McKenney @ 2023-08-04 17:54 UTC (permalink / raw)
  To: Leonardo Bras; +Cc: Leonardo Bras, Akira Yokosawa, perfbook

On Fri, Aug 04, 2023 at 02:41:34PM -0300, Leonardo Bras wrote:
> Some recent CI errors come from the incompatibility between packages
> pre-installed in the docker image and the ones installed via pacman.
> 
> To avoid this, make a full system upgrade when installing the needed
> packages.
> 
> Signed-off-by: Leonardo Bras <leobras.c@gmail.com>

Queued and pushed, thank you!

							Thanx, Paul

> ---
>  utilities/gitlab-ci.yml | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/utilities/gitlab-ci.yml b/utilities/gitlab-ci.yml
> index 544b9373..bcda8712 100644
> --- a/utilities/gitlab-ci.yml
> +++ b/utilities/gitlab-ci.yml
> @@ -9,7 +9,7 @@ test_codesamples:
>      stage: test
>  
>      before_script:
> -        - pacman --noconfirm -Sy make gcc liburcu
> +        - pacman --noconfirm -Syu make gcc liburcu
>  
>      script:
>          - make -C CodeSamples/
> @@ -19,7 +19,7 @@ generate_pdfs:
>      stage: build
>  
>      before_script:
> -        - pacman --noconfirm -Sy texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
> +        - pacman --noconfirm -Syu texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
>          - mkdir -p ~/.local/share/fonts && cp fonts/steel-city-comic.regular.ttf ~/.local/share/fonts/ && fc-cache
>  
>      script:
> -- 
> 2.41.0
> 

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

* [PATCH] utilities/gitlab-ci: Fully update system before building
@ 2023-08-04 17:50 Leonardo Bras
  0 siblings, 0 replies; 8+ messages in thread
From: Leonardo Bras @ 2023-08-04 17:50 UTC (permalink / raw)
  To: Paul E . McKenney; +Cc: Leonardo Bras, Akira Yokosawa, perfbook

Some recent CI errors come from the incompatibility between packages
pre-installed in the docker image and the ones installed via pacman.

To avoid this, make a full system upgrade when installing the needed
packages.

Signed-off-by: Leonardo Bras <leobras.c@gmail.com>
---
 utilities/gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/utilities/gitlab-ci.yml b/utilities/gitlab-ci.yml
index 544b9373..bcda8712 100644
--- a/utilities/gitlab-ci.yml
+++ b/utilities/gitlab-ci.yml
@@ -9,7 +9,7 @@ test_codesamples:
     stage: test
 
     before_script:
-        - pacman --noconfirm -Sy make gcc liburcu
+        - pacman --noconfirm -Syu make gcc liburcu
 
     script:
         - make -C CodeSamples/
@@ -19,7 +19,7 @@ generate_pdfs:
     stage: build
 
     before_script:
-        - pacman --noconfirm -Sy texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
+        - pacman --noconfirm -Syu texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
         - mkdir -p ~/.local/share/fonts && cp fonts/steel-city-comic.regular.ttf ~/.local/share/fonts/ && fc-cache
 
     script:
-- 
2.41.0


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

* [PATCH] utilities/gitlab-ci: Fully update system before building
@ 2023-08-04 17:41 Leonardo Bras
  2023-08-04 17:54 ` Paul E. McKenney
  0 siblings, 1 reply; 8+ messages in thread
From: Leonardo Bras @ 2023-08-04 17:41 UTC (permalink / raw)
  To: Paul E . McKenney; +Cc: Leonardo Bras, Akira Yokosawa, perfbook

Some recent CI errors come from the incompatibility between packages
pre-installed in the docker image and the ones installed via pacman.

To avoid this, make a full system upgrade when installing the needed
packages.

Signed-off-by: Leonardo Bras <leobras.c@gmail.com>
---
 utilities/gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/utilities/gitlab-ci.yml b/utilities/gitlab-ci.yml
index 544b9373..bcda8712 100644
--- a/utilities/gitlab-ci.yml
+++ b/utilities/gitlab-ci.yml
@@ -9,7 +9,7 @@ test_codesamples:
     stage: test
 
     before_script:
-        - pacman --noconfirm -Sy make gcc liburcu
+        - pacman --noconfirm -Syu make gcc liburcu
 
     script:
         - make -C CodeSamples/
@@ -19,7 +19,7 @@ generate_pdfs:
     stage: build
 
     before_script:
-        - pacman --noconfirm -Sy texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
+        - pacman --noconfirm -Syu texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation
         - mkdir -p ~/.local/share/fonts && cp fonts/steel-city-comic.regular.ttf ~/.local/share/fonts/ && fc-cache
 
     script:
-- 
2.41.0


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

end of thread, other threads:[~2023-08-06  4:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-04 17:46 [PATCH] utilities/gitlab-ci: Fully update system before building Leonardo Bras
2023-08-04 17:53 ` Leonardo Brás
2023-08-04 18:05   ` Paul E. McKenney
2023-08-05  3:16     ` Leonardo Brás
2023-08-06  4:54       ` Paul E. McKenney
  -- strict thread matches above, loose matches on Subject: below --
2023-08-04 17:50 Leonardo Bras
2023-08-04 17:41 Leonardo Bras
2023-08-04 17:54 ` Paul E. McKenney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).