All of lore.kernel.org
 help / color / mirror / Atom feed
* [qemu-web PATCH] remove deployment phase from CI
@ 2021-11-18  7:47 Paolo Bonzini
  2021-11-18  7:51 ` Thomas Huth
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Paolo Bonzini @ 2021-11-18  7:47 UTC (permalink / raw)
  To: qemu-devel; +Cc: thuth

qemu.org is now served via a reverse proxy from qemu-project.gitlab.io; it does
not need anymore the rsync step to the QEMU project's shell server.
Remove it from the CI.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 .gitlab-ci.yml | 24 ------------------------
 1 file changed, 24 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 129b2ff..dde0ef3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,6 @@
 
 stages:
   - build
-  - update
 
 pages:
   image: centos:8
@@ -19,26 +18,3 @@ pages:
   artifacts:
     paths:
      - public
-
-deploy:
-  image: centos:8
-  stage: update
-  needs:
-    - job: pages
-      artifacts: true
-  before_script:
-    - dnf install -y openssh-clients rsync
-    - eval $(ssh-agent -s)
-    - cat "$SSH_PRIVATE_KEY_FILE" | tr -d '\r' | ssh-add -
-    - mkdir -m700 -p ~/.ssh
-    - - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" >> ~/.ssh/config'
-  script:
-    - ssh $SSH_DEPLOY_DESTINATION "cd /var/www/qemu-project.org && mkdir new && rsync -az root/ new"
-    - rsync -avz --delete public/ $SSH_DEPLOY_DESTINATION:/var/www/qemu-project.org/new
-    - ssh $SSH_DEPLOY_DESTINATION "cd /var/www/qemu-project.org && rm -rf old && mv root old && mv new root"
-  only:
-    refs:
-      - master
-    variables:
-      - $SSH_PRIVATE_KEY_FILE
-      - $SSH_DEPLOY_DESTINATION
-- 
2.33.1



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

* Re: [qemu-web PATCH] remove deployment phase from CI
  2021-11-18  7:47 [qemu-web PATCH] remove deployment phase from CI Paolo Bonzini
@ 2021-11-18  7:51 ` Thomas Huth
  2021-11-18 10:44 ` Daniel P. Berrangé
  2021-11-18 18:02 ` Willian Rampazzo
  2 siblings, 0 replies; 8+ messages in thread
From: Thomas Huth @ 2021-11-18  7:51 UTC (permalink / raw)
  To: Paolo Bonzini, qemu-devel

On 18/11/2021 08.47, Paolo Bonzini wrote:
> qemu.org is now served via a reverse proxy from qemu-project.gitlab.io; it does
> not need anymore the rsync step to the QEMU project's shell server.
> Remove it from the CI.
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>   .gitlab-ci.yml | 24 ------------------------
>   1 file changed, 24 deletions(-)
> 
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index 129b2ff..dde0ef3 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -1,7 +1,6 @@
>   
>   stages:
>     - build
> -  - update
>   
>   pages:
>     image: centos:8
> @@ -19,26 +18,3 @@ pages:
>     artifacts:
>       paths:
>        - public
> -
> -deploy:
> -  image: centos:8
> -  stage: update
> -  needs:
> -    - job: pages
> -      artifacts: true
> -  before_script:
> -    - dnf install -y openssh-clients rsync
> -    - eval $(ssh-agent -s)
> -    - cat "$SSH_PRIVATE_KEY_FILE" | tr -d '\r' | ssh-add -
> -    - mkdir -m700 -p ~/.ssh
> -    - - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" >> ~/.ssh/config'
> -  script:
> -    - ssh $SSH_DEPLOY_DESTINATION "cd /var/www/qemu-project.org && mkdir new && rsync -az root/ new"
> -    - rsync -avz --delete public/ $SSH_DEPLOY_DESTINATION:/var/www/qemu-project.org/new
> -    - ssh $SSH_DEPLOY_DESTINATION "cd /var/www/qemu-project.org && rm -rf old && mv root old && mv new root"
> -  only:
> -    refs:
> -      - master
> -    variables:
> -      - $SSH_PRIVATE_KEY_FILE
> -      - $SSH_DEPLOY_DESTINATION
> 

Acked-by: Thomas Huth <thuth@redhat.com>



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

* Re: [qemu-web PATCH] remove deployment phase from CI
  2021-11-18  7:47 [qemu-web PATCH] remove deployment phase from CI Paolo Bonzini
  2021-11-18  7:51 ` Thomas Huth
@ 2021-11-18 10:44 ` Daniel P. Berrangé
  2021-11-18 18:02 ` Willian Rampazzo
  2 siblings, 0 replies; 8+ messages in thread
From: Daniel P. Berrangé @ 2021-11-18 10:44 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: thuth, qemu-devel

On Thu, Nov 18, 2021 at 08:47:01AM +0100, Paolo Bonzini wrote:
> qemu.org is now served via a reverse proxy from qemu-project.gitlab.io; it does
> not need anymore the rsync step to the QEMU project's shell server.
> Remove it from the CI.
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  .gitlab-ci.yml | 24 ------------------------
>  1 file changed, 24 deletions(-)

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


Regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|



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

* Re: [qemu-web PATCH] remove deployment phase from CI
  2021-11-18  7:47 [qemu-web PATCH] remove deployment phase from CI Paolo Bonzini
  2021-11-18  7:51 ` Thomas Huth
  2021-11-18 10:44 ` Daniel P. Berrangé
@ 2021-11-18 18:02 ` Willian Rampazzo
  2 siblings, 0 replies; 8+ messages in thread
From: Willian Rampazzo @ 2021-11-18 18:02 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: Thomas Huth, qemu-devel

On Thu, Nov 18, 2021 at 4:50 AM Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> qemu.org is now served via a reverse proxy from qemu-project.gitlab.io; it does
> not need anymore the rsync step to the QEMU project's shell server.
> Remove it from the CI.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  .gitlab-ci.yml | 24 ------------------------
>  1 file changed, 24 deletions(-)
>

Reviewed-by: Willian Rampazzo <willianr@redhat.com>



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

* Re: [qemu-web PATCH] remove deployment phase from CI
  2021-11-03  8:14 Paolo Bonzini
  2021-11-03  9:02 ` Thomas Huth
  2021-11-03  9:53 ` Andrea Bolognani
@ 2021-11-03 17:03 ` Willian Rampazzo
  2 siblings, 0 replies; 8+ messages in thread
From: Willian Rampazzo @ 2021-11-03 17:03 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: Thomas Huth, qemu-devel

On Wed, Nov 3, 2021 at 5:16 AM Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> qemu.org is now served via a reverse proxy from qemu-project.gitlab.io; it does
> not need anymore the rsync step to the QEMU project\s shell server.
> Remove it from the CI.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  .gitlab-ci.yml | 24 ------------------------
>  1 file changed, 24 deletions(-)
>

Reviewed-by: Willian Rampazzo <willianr@redhat.com>



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

* Re: [qemu-web PATCH] remove deployment phase from CI
  2021-11-03  8:14 Paolo Bonzini
  2021-11-03  9:02 ` Thomas Huth
@ 2021-11-03  9:53 ` Andrea Bolognani
  2021-11-03 17:03 ` Willian Rampazzo
  2 siblings, 0 replies; 8+ messages in thread
From: Andrea Bolognani @ 2021-11-03  9:53 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: thuth, qemu-devel

On Wed, Nov 03, 2021 at 09:14:59AM +0100, Paolo Bonzini wrote:
> qemu.org is now served via a reverse proxy from qemu-project.gitlab.io; it does
> not need anymore the rsync step to the QEMU project\s shell server.

*project's

-- 
Andrea Bolognani / Red Hat / Virtualization



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

* Re: [qemu-web PATCH] remove deployment phase from CI
  2021-11-03  8:14 Paolo Bonzini
@ 2021-11-03  9:02 ` Thomas Huth
  2021-11-03  9:53 ` Andrea Bolognani
  2021-11-03 17:03 ` Willian Rampazzo
  2 siblings, 0 replies; 8+ messages in thread
From: Thomas Huth @ 2021-11-03  9:02 UTC (permalink / raw)
  To: Paolo Bonzini, qemu-devel

On 03/11/2021 09.14, Paolo Bonzini wrote:
> qemu.org is now served via a reverse proxy from qemu-project.gitlab.io; it does
> not need anymore the rsync step to the QEMU project\s shell server.
> Remove it from the CI.
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>   .gitlab-ci.yml | 24 ------------------------
>   1 file changed, 24 deletions(-)
> 
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index 129b2ff..dde0ef3 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -1,7 +1,6 @@
>   
>   stages:
>     - build
> -  - update
>   
>   pages:
>     image: centos:8
> @@ -19,26 +18,3 @@ pages:
>     artifacts:
>       paths:
>        - public
> -
> -deploy:
> -  image: centos:8
> -  stage: update
> -  needs:
> -    - job: pages
> -      artifacts: true
> -  before_script:
> -    - dnf install -y openssh-clients rsync
> -    - eval $(ssh-agent -s)
> -    - cat "$SSH_PRIVATE_KEY_FILE" | tr -d '\r' | ssh-add -
> -    - mkdir -m700 -p ~/.ssh
> -    - - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" >> ~/.ssh/config'
> -  script:
> -    - ssh $SSH_DEPLOY_DESTINATION "cd /var/www/qemu-project.org && mkdir new && rsync -az root/ new"
> -    - rsync -avz --delete public/ $SSH_DEPLOY_DESTINATION:/var/www/qemu-project.org/new
> -    - ssh $SSH_DEPLOY_DESTINATION "cd /var/www/qemu-project.org && rm -rf old && mv root old && mv new root"
> -  only:
> -    refs:
> -      - master
> -    variables:
> -      - $SSH_PRIVATE_KEY_FILE
> -      - $SSH_DEPLOY_DESTINATION
> 

Acked-by: Thomas Huth <thuth@redhat.com>



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

* [qemu-web PATCH] remove deployment phase from CI
@ 2021-11-03  8:14 Paolo Bonzini
  2021-11-03  9:02 ` Thomas Huth
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Paolo Bonzini @ 2021-11-03  8:14 UTC (permalink / raw)
  To: qemu-devel; +Cc: thuth

qemu.org is now served via a reverse proxy from qemu-project.gitlab.io; it does
not need anymore the rsync step to the QEMU project\s shell server.
Remove it from the CI.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 .gitlab-ci.yml | 24 ------------------------
 1 file changed, 24 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 129b2ff..dde0ef3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,6 @@
 
 stages:
   - build
-  - update
 
 pages:
   image: centos:8
@@ -19,26 +18,3 @@ pages:
   artifacts:
     paths:
      - public
-
-deploy:
-  image: centos:8
-  stage: update
-  needs:
-    - job: pages
-      artifacts: true
-  before_script:
-    - dnf install -y openssh-clients rsync
-    - eval $(ssh-agent -s)
-    - cat "$SSH_PRIVATE_KEY_FILE" | tr -d '\r' | ssh-add -
-    - mkdir -m700 -p ~/.ssh
-    - - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" >> ~/.ssh/config'
-  script:
-    - ssh $SSH_DEPLOY_DESTINATION "cd /var/www/qemu-project.org && mkdir new && rsync -az root/ new"
-    - rsync -avz --delete public/ $SSH_DEPLOY_DESTINATION:/var/www/qemu-project.org/new
-    - ssh $SSH_DEPLOY_DESTINATION "cd /var/www/qemu-project.org && rm -rf old && mv root old && mv new root"
-  only:
-    refs:
-      - master
-    variables:
-      - $SSH_PRIVATE_KEY_FILE
-      - $SSH_DEPLOY_DESTINATION
-- 
2.33.1



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

end of thread, other threads:[~2021-11-18 18:05 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-18  7:47 [qemu-web PATCH] remove deployment phase from CI Paolo Bonzini
2021-11-18  7:51 ` Thomas Huth
2021-11-18 10:44 ` Daniel P. Berrangé
2021-11-18 18:02 ` Willian Rampazzo
  -- strict thread matches above, loose matches on Subject: below --
2021-11-03  8:14 Paolo Bonzini
2021-11-03  9:02 ` Thomas Huth
2021-11-03  9:53 ` Andrea Bolognani
2021-11-03 17:03 ` Willian Rampazzo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.