Tarantool development patches archive
 help / color / mirror / Atom feed
* [Tarantool-patches] [PATCH v2] gitlab-ci: keep perf results as gitlab-ci artifacts`
@ 2020-05-06 17:33 Oleg Piskunov
  2020-05-06 18:03 ` Alexander Turenko
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Oleg Piskunov @ 2020-05-06 17:33 UTC (permalink / raw)
  To: tarantool-patches; +Cc: Oleg Piskunov

[-- Attachment #1: Type: text/plain, Size: 693 bytes --]



Gitlab-ci pipeline modified in order to keep
performance results into gitlab-ci artifacts.
 
Closes #4920
 
---
 
Github: https://github.com/tarantool/tarantool/tree/opiskunov/gh-4920-perf-artifacts
Issue: https://github.com/tarantool/tarantool/issues/4920

 .gitlab-ci.yml | 5 +++++
 1 file changed, 5 insertions(+)
 
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b3b07da..ae2afce 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -93,6 +93,11 @@ variables:
   stage: perf
   tags:
     - docker_perf
+  artifacts:
+    when: always
+    paths:
+      - "*_result.txt"
+      - "*_t_version.txt"
   script:
     - ${GITLAB_MAKE} perf_run
 
--
1.8.3.1
 

[-- Attachment #2: Type: text/html, Size: 1039 bytes --]

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

* Re: [Tarantool-patches] [PATCH v2] gitlab-ci: keep perf results as gitlab-ci artifacts`
  2020-05-06 17:33 [Tarantool-patches] [PATCH v2] gitlab-ci: keep perf results as gitlab-ci artifacts` Oleg Piskunov
@ 2020-05-06 18:03 ` Alexander Turenko
  2020-05-06 20:27   ` Oleg Piskunov
  2020-05-07  8:28 ` Sergey Bronnikov
  2020-05-08  8:17 ` Kirill Yukhin
  2 siblings, 1 reply; 5+ messages in thread
From: Alexander Turenko @ 2020-05-06 18:03 UTC (permalink / raw)
  To: Oleg Piskunov; +Cc: tarantool-patches

LGTM.

However I would verify it on *-perf branch just in case.

WBR, Alexander Turenko.

On Wed, May 06, 2020 at 08:33:49PM +0300, Oleg Piskunov wrote:
> 
> 
> Gitlab-ci pipeline modified in order to keep
> performance results into gitlab-ci artifacts.
>  
> Closes #4920
>  
> ---
>  
> Github: https://github.com/tarantool/tarantool/tree/opiskunov/gh-4920-perf-artifacts
> Issue: https://github.com/tarantool/tarantool/issues/4920
> 
>  .gitlab-ci.yml | 5 +++++
>  1 file changed, 5 insertions(+)
>  
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index b3b07da..ae2afce 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -93,6 +93,11 @@ variables:
>    stage: perf
>    tags:
>      - docker_perf
> +  artifacts:
> +    when: always
> +    paths:
> +      - "*_result.txt"
> +      - "*_t_version.txt"
>    script:
>      - ${GITLAB_MAKE} perf_run
>  
> --
> 1.8.3.1
>  

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

* Re: [Tarantool-patches] [PATCH v2] gitlab-ci: keep perf results as gitlab-ci artifacts`
  2020-05-06 18:03 ` Alexander Turenko
@ 2020-05-06 20:27   ` Oleg Piskunov
  0 siblings, 0 replies; 5+ messages in thread
From: Oleg Piskunov @ 2020-05-06 20:27 UTC (permalink / raw)
  To: Alexander Turenko; +Cc: tarantool-patches

[-- Attachment #1: Type: text/plain, Size: 1166 bytes --]


Already verified:
https://gitlab.com/tarantool/tarantool/pipelines/143431818
  
>Среда, 6 мая 2020, 21:04 +03:00 от Alexander Turenko <alexander.turenko@tarantool.org>:
> 
>LGTM.
>
>However I would verify it on *-perf branch just in case.
>
>WBR, Alexander Turenko.
>
>On Wed, May 06, 2020 at 08:33:49PM +0300, Oleg Piskunov wrote:
>>
>>
>> Gitlab-ci pipeline modified in order to keep
>> performance results into gitlab-ci artifacts.
>>  
>> Closes #4920
>>  
>> ---
>>  
>> Github:  https://github.com/tarantool/tarantool/tree/opiskunov/gh-4920-perf-artifacts
>> Issue:  https://github.com/tarantool/tarantool/issues/4920
>>
>>  .gitlab-ci.yml | 5 +++++
>>  1 file changed, 5 insertions(+)
>>  
>> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
>> index b3b07da..ae2afce 100644
>> --- a/.gitlab-ci.yml
>> +++ b/.gitlab-ci.yml
>> @@ -93,6 +93,11 @@ variables:
>>    stage: perf
>>    tags:
>>      - docker_perf
>> +  artifacts:
>> +    when: always
>> +    paths:
>> +      - "*_result.txt"
>> +      - "*_t_version.txt"
>>    script:
>>      - ${GITLAB_MAKE} perf_run
>>  
>> --
>> 1.8.3.1
>>   
 
 
--
Oleg Piskunov
 

[-- Attachment #2: Type: text/html, Size: 2218 bytes --]

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

* Re: [Tarantool-patches] [PATCH v2] gitlab-ci: keep perf results as gitlab-ci artifacts`
  2020-05-06 17:33 [Tarantool-patches] [PATCH v2] gitlab-ci: keep perf results as gitlab-ci artifacts` Oleg Piskunov
  2020-05-06 18:03 ` Alexander Turenko
@ 2020-05-07  8:28 ` Sergey Bronnikov
  2020-05-08  8:17 ` Kirill Yukhin
  2 siblings, 0 replies; 5+ messages in thread
From: Sergey Bronnikov @ 2020-05-07  8:28 UTC (permalink / raw)
  To: Oleg Piskunov; +Cc: tarantool-patches

On 20:33 Wed 06 May , Oleg Piskunov wrote:
> 
> 
> Gitlab-ci pipeline modified in order to keep
> performance results into gitlab-ci artifacts.
>  
> Closes #4920

LGTM

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

* Re: [Tarantool-patches] [PATCH v2] gitlab-ci: keep perf results as gitlab-ci artifacts`
  2020-05-06 17:33 [Tarantool-patches] [PATCH v2] gitlab-ci: keep perf results as gitlab-ci artifacts` Oleg Piskunov
  2020-05-06 18:03 ` Alexander Turenko
  2020-05-07  8:28 ` Sergey Bronnikov
@ 2020-05-08  8:17 ` Kirill Yukhin
  2 siblings, 0 replies; 5+ messages in thread
From: Kirill Yukhin @ 2020-05-08  8:17 UTC (permalink / raw)
  To: Oleg Piskunov; +Cc: tarantool-patches

Hello,

On 06 май 20:33, Oleg Piskunov wrote:
> 
> 
> Gitlab-ci pipeline modified in order to keep
> performance results into gitlab-ci artifacts.
>  
> Closes #4920

I've checked your patch into 1.10, 2.3, 2.4 and master.

--
Regards, Kirill Yukhin

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

end of thread, other threads:[~2020-05-08  8:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-06 17:33 [Tarantool-patches] [PATCH v2] gitlab-ci: keep perf results as gitlab-ci artifacts` Oleg Piskunov
2020-05-06 18:03 ` Alexander Turenko
2020-05-06 20:27   ` Oleg Piskunov
2020-05-07  8:28 ` Sergey Bronnikov
2020-05-08  8:17 ` Kirill Yukhin

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