diff mbox series

[ovs-dev,2/2] appveyor: Silence the git clone of pthreads4w.

Message ID 20230531192341.2006171-3-i.maximets@ovn.org
State Rejected
Headers show
Series appveyor: Clean up initialization step. | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed
ovsrobot/intel-ovs-compilation success test: success

Commit Message

Ilya Maximets May 31, 2023, 7:23 p.m. UTC
Git by default reports progress on stderr.  This doesn't fail
the build, but upsets the powershell:

 git : Cloning into 'c:\pthreads4w-code'...
 At line:3 char:1
 + git clone https://git.code.sf.net/p/pthreads4w/code c:\pthreads4w-cod ...
 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     + CategoryInfo          : NotSpecified:
            (Cloning into 'c:\pthreads4w-code'...:String) [], RemoteException
     + FullyQualifiedErrorId : NativeCommandError

Silence the git clone to avoid the warning.

Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
---
 appveyor.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Alin Serdean May 31, 2023, 8:29 p.m. UTC | #1
Acked-by: Alin Gabriel Serdean <aserdean@ovn.org>

> 
> On 31 May 2023, at 21:23, Ilya Maximets <i.maximets@ovn.org> wrote:
> 
> Git by default reports progress on stderr.  This doesn't fail
> the build, but upsets the powershell:
> 
> git : Cloning into 'c:\pthreads4w-code'...
> At line:3 char:1
> + git clone https://git.code.sf.net/p/pthreads4w/code c:\pthreads4w-cod ...
> + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>     + CategoryInfo          : NotSpecified:
>            (Cloning into 'c:\pthreads4w-code'...:String) [], RemoteException
>     + FullyQualifiedErrorId : NativeCommandError
> 
> Silence the git clone to avoid the warning.
> 
> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
> ---
> appveyor.yml | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/appveyor.yml b/appveyor.yml
> index 3287733b2..6bf5db8fd 100644
> --- a/appveyor.yml
> +++ b/appveyor.yml
> @@ -15,7 +15,7 @@ init:
> 
>     cd C:\openvswitch
> 
> -    git clone https://git.code.sf.net/p/pthreads4w/code c:\pthreads4w-code
> +    git clone -q https://git.code.sf.net/p/pthreads4w/code c:\pthreads4w-code
> 
>     python3 -m pip install pypiwin32 --disable-pip-version-check
> 
> -- 
> 2.40.1
>
Ilya Maximets June 2, 2023, 10:24 a.m. UTC | #2
On 5/31/23 22:29, Alin Serdean wrote:
> Acked-by: Alin Gabriel Serdean <aserdean@ovn.org>

Thanks!  I applied this one patch.

Best regards, Ilya Maximets.

> 
>>
>> On 31 May 2023, at 21:23, Ilya Maximets <i.maximets@ovn.org> wrote:
>>
>> Git by default reports progress on stderr.  This doesn't fail
>> the build, but upsets the powershell:
>>
>> git : Cloning into 'c:\pthreads4w-code'...
>> At line:3 char:1
>> + git clone https://git.code.sf.net/p/pthreads4w/code c:\pthreads4w-cod ...
>> + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>>     + CategoryInfo          : NotSpecified:
>>            (Cloning into 'c:\pthreads4w-code'...:String) [], RemoteException
>>     + FullyQualifiedErrorId : NativeCommandError
>>
>> Silence the git clone to avoid the warning.
>>
>> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
>> ---
>> appveyor.yml | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/appveyor.yml b/appveyor.yml
>> index 3287733b2..6bf5db8fd 100644
>> --- a/appveyor.yml
>> +++ b/appveyor.yml
>> @@ -15,7 +15,7 @@ init:
>>
>>     cd C:\openvswitch
>>
>> -    git clone https://git.code.sf.net/p/pthreads4w/code c:\pthreads4w-code
>> +    git clone -q https://git.code.sf.net/p/pthreads4w/code c:\pthreads4w-code
>>
>>     python3 -m pip install pypiwin32 --disable-pip-version-check
>>
>> -- 
>> 2.40.1
>>
Alin Serdean June 8, 2023, 9:03 a.m. UTC | #3
Thank you for the patch!

—
Alin.

> On 2 Jun 2023, at 12:24, Ilya Maximets <i.maximets@ovn.org> wrote:
> 
> On 5/31/23 22:29, Alin Serdean wrote:
>> Acked-by: Alin Gabriel Serdean <aserdean@ovn.org>
> 
> Thanks!  I applied this one patch.
> 
> Best regards, Ilya Maximets.
> 
>> 
>>> 
>>>> On 31 May 2023, at 21:23, Ilya Maximets <i.maximets@ovn.org> wrote:
>>> 
>>> Git by default reports progress on stderr.  This doesn't fail
>>> the build, but upsets the powershell:
>>> 
>>> git : Cloning into 'c:\pthreads4w-code'...
>>> At line:3 char:1
>>> + git clone https://git.code.sf.net/p/pthreads4w/code c:\pthreads4w-cod ...
>>> + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>>>    + CategoryInfo          : NotSpecified:
>>>           (Cloning into 'c:\pthreads4w-code'...:String) [], RemoteException
>>>    + FullyQualifiedErrorId : NativeCommandError
>>> 
>>> Silence the git clone to avoid the warning.
>>> 
>>> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
>>> ---
>>> appveyor.yml | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>> 
>>> diff --git a/appveyor.yml b/appveyor.yml
>>> index 3287733b2..6bf5db8fd 100644
>>> --- a/appveyor.yml
>>> +++ b/appveyor.yml
>>> @@ -15,7 +15,7 @@ init:
>>> 
>>>    cd C:\openvswitch
>>> 
>>> -    git clone https://git.code.sf.net/p/pthreads4w/code c:\pthreads4w-code
>>> +    git clone -q https://git.code.sf.net/p/pthreads4w/code c:\pthreads4w-code
>>> 
>>>    python3 -m pip install pypiwin32 --disable-pip-version-check
>>> 
>>> -- 
>>> 2.40.1
>>> 
>
diff mbox series

Patch

diff --git a/appveyor.yml b/appveyor.yml
index 3287733b2..6bf5db8fd 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -15,7 +15,7 @@  init:
 
     cd C:\openvswitch
 
-    git clone https://git.code.sf.net/p/pthreads4w/code c:\pthreads4w-code
+    git clone -q https://git.code.sf.net/p/pthreads4w/code c:\pthreads4w-code
 
     python3 -m pip install pypiwin32 --disable-pip-version-check