public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH] ArmPkg, ArmVirtPkg: put SpellCheck in AuditOnly mode
@ 2022-09-07 15:27 Ard Biesheuvel
  2022-09-07 15:33 ` Michael Kubacki
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Ard Biesheuvel @ 2022-09-07 15:27 UTC (permalink / raw)
  To: devel; +Cc: quic_llindhol, mikuback, Ard Biesheuvel

Don't allow spelling errors to break the CI build and inadvertently
reject pull requests - spelling is important but not that important.

Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
---
 ArmPkg/ArmPkg.ci.yaml         | 2 +-
 ArmVirtPkg/ArmVirtPkg.ci.yaml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ArmPkg/ArmPkg.ci.yaml b/ArmPkg/ArmPkg.ci.yaml
index b7e07aaef675..24db74250513 100644
--- a/ArmPkg/ArmPkg.ci.yaml
+++ b/ArmPkg/ArmPkg.ci.yaml
@@ -87,7 +87,7 @@
 
     ## options defined .pytool/Plugin/SpellCheck
     "SpellCheck": {
-        "AuditOnly": False,
+        "AuditOnly": True,
         "IgnoreFiles": [
             "Library/ArmSoftFloatLib/berkeley-softfloat-3/**"
         ],                           # use gitignore syntax to ignore errors
diff --git a/ArmVirtPkg/ArmVirtPkg.ci.yaml b/ArmVirtPkg/ArmVirtPkg.ci.yaml
index d5d63ddd4fd7..1e799dc4e194 100644
--- a/ArmVirtPkg/ArmVirtPkg.ci.yaml
+++ b/ArmVirtPkg/ArmVirtPkg.ci.yaml
@@ -96,7 +96,7 @@
 
     ## options defined .pytool/Plugin/SpellCheck
     "SpellCheck": {
-        "AuditOnly": False,           # Fails right now with over 270 errors
+        "AuditOnly": True,
         "IgnoreFiles": [],           # use gitignore syntax to ignore errors in matching files
         "ExtendWords": [
             "acpiview",
-- 
2.35.1


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

* Re: [PATCH] ArmPkg, ArmVirtPkg: put SpellCheck in AuditOnly mode
  2022-09-07 15:27 [PATCH] ArmPkg, ArmVirtPkg: put SpellCheck in AuditOnly mode Ard Biesheuvel
@ 2022-09-07 15:33 ` Michael Kubacki
  2022-09-07 16:11 ` [edk2-devel] " Rebecca Cran
  2022-09-08  7:30 ` Sami Mujawar
  2 siblings, 0 replies; 4+ messages in thread
From: Michael Kubacki @ 2022-09-07 15:33 UTC (permalink / raw)
  To: Ard Biesheuvel, devel; +Cc: quic_llindhol

Reviewed-by: Michael Kubacki <michael.kubacki@microsoft.com>

On 9/7/2022 11:27 AM, Ard Biesheuvel wrote:
> Don't allow spelling errors to break the CI build and inadvertently
> reject pull requests - spelling is important but not that important.
> 
> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
> ---
>   ArmPkg/ArmPkg.ci.yaml         | 2 +-
>   ArmVirtPkg/ArmVirtPkg.ci.yaml | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/ArmPkg/ArmPkg.ci.yaml b/ArmPkg/ArmPkg.ci.yaml
> index b7e07aaef675..24db74250513 100644
> --- a/ArmPkg/ArmPkg.ci.yaml
> +++ b/ArmPkg/ArmPkg.ci.yaml
> @@ -87,7 +87,7 @@
>   
> 
>       ## options defined .pytool/Plugin/SpellCheck
> 
>       "SpellCheck": {
> 
> -        "AuditOnly": False,
> 
> +        "AuditOnly": True,
> 
>           "IgnoreFiles": [
> 
>               "Library/ArmSoftFloatLib/berkeley-softfloat-3/**"
> 
>           ],                           # use gitignore syntax to ignore errors
> 
> diff --git a/ArmVirtPkg/ArmVirtPkg.ci.yaml b/ArmVirtPkg/ArmVirtPkg.ci.yaml
> index d5d63ddd4fd7..1e799dc4e194 100644
> --- a/ArmVirtPkg/ArmVirtPkg.ci.yaml
> +++ b/ArmVirtPkg/ArmVirtPkg.ci.yaml
> @@ -96,7 +96,7 @@
>   
> 
>       ## options defined .pytool/Plugin/SpellCheck
> 
>       "SpellCheck": {
> 
> -        "AuditOnly": False,           # Fails right now with over 270 errors
> 
> +        "AuditOnly": True,
> 
>           "IgnoreFiles": [],           # use gitignore syntax to ignore errors in matching files
> 
>           "ExtendWords": [
> 
>               "acpiview",
> 

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

* Re: [edk2-devel] [PATCH] ArmPkg, ArmVirtPkg: put SpellCheck in AuditOnly mode
  2022-09-07 15:27 [PATCH] ArmPkg, ArmVirtPkg: put SpellCheck in AuditOnly mode Ard Biesheuvel
  2022-09-07 15:33 ` Michael Kubacki
@ 2022-09-07 16:11 ` Rebecca Cran
  2022-09-08  7:30 ` Sami Mujawar
  2 siblings, 0 replies; 4+ messages in thread
From: Rebecca Cran @ 2022-09-07 16:11 UTC (permalink / raw)
  To: devel, ardb; +Cc: quic_llindhol, mikuback

Reviewed-by: Rebecca Cran <rebecca@quicinc.com>

On 9/7/22 09:27, Ard Biesheuvel wrote:
> Don't allow spelling errors to break the CI build and inadvertently
> reject pull requests - spelling is important but not that important.
>
> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
> ---
>   ArmPkg/ArmPkg.ci.yaml         | 2 +-
>   ArmVirtPkg/ArmVirtPkg.ci.yaml | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/ArmPkg/ArmPkg.ci.yaml b/ArmPkg/ArmPkg.ci.yaml
> index b7e07aaef675..24db74250513 100644
> --- a/ArmPkg/ArmPkg.ci.yaml
> +++ b/ArmPkg/ArmPkg.ci.yaml
> @@ -87,7 +87,7 @@
>   
>       ## options defined .pytool/Plugin/SpellCheck
>       "SpellCheck": {
> -        "AuditOnly": False,
> +        "AuditOnly": True,
>           "IgnoreFiles": [
>               "Library/ArmSoftFloatLib/berkeley-softfloat-3/**"
>           ],                           # use gitignore syntax to ignore errors
> diff --git a/ArmVirtPkg/ArmVirtPkg.ci.yaml b/ArmVirtPkg/ArmVirtPkg.ci.yaml
> index d5d63ddd4fd7..1e799dc4e194 100644
> --- a/ArmVirtPkg/ArmVirtPkg.ci.yaml
> +++ b/ArmVirtPkg/ArmVirtPkg.ci.yaml
> @@ -96,7 +96,7 @@
>   
>       ## options defined .pytool/Plugin/SpellCheck
>       "SpellCheck": {
> -        "AuditOnly": False,           # Fails right now with over 270 errors
> +        "AuditOnly": True,
>           "IgnoreFiles": [],           # use gitignore syntax to ignore errors in matching files
>           "ExtendWords": [
>               "acpiview",


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

* Re: [edk2-devel] [PATCH] ArmPkg, ArmVirtPkg: put SpellCheck in AuditOnly mode
  2022-09-07 15:27 [PATCH] ArmPkg, ArmVirtPkg: put SpellCheck in AuditOnly mode Ard Biesheuvel
  2022-09-07 15:33 ` Michael Kubacki
  2022-09-07 16:11 ` [edk2-devel] " Rebecca Cran
@ 2022-09-08  7:30 ` Sami Mujawar
  2 siblings, 0 replies; 4+ messages in thread
From: Sami Mujawar @ 2022-09-08  7:30 UTC (permalink / raw)
  To: devel@edk2.groups.io, ardb@kernel.org
  Cc: quic_llindhol@quicinc.com, mikuback@linux.microsoft.com, nd

Hi Ard,

Thank you for this patch.

Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>

Regards,

Sami Mujawar

On 07/09/2022, 16:28, "devel@edk2.groups.io on behalf of Ard Biesheuvel via groups.io" <devel@edk2.groups.io on behalf of ardb=kernel.org@groups.io> wrote:

    Don't allow spelling errors to break the CI build and inadvertently
    reject pull requests - spelling is important but not that important.

    Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
    ---
     ArmPkg/ArmPkg.ci.yaml         | 2 +-
     ArmVirtPkg/ArmVirtPkg.ci.yaml | 2 +-
     2 files changed, 2 insertions(+), 2 deletions(-)

    diff --git a/ArmPkg/ArmPkg.ci.yaml b/ArmPkg/ArmPkg.ci.yaml
    index b7e07aaef675..24db74250513 100644
    --- a/ArmPkg/ArmPkg.ci.yaml
    +++ b/ArmPkg/ArmPkg.ci.yaml
    @@ -87,7 +87,7 @@


         ## options defined .pytool/Plugin/SpellCheck

         "SpellCheck": {

    -        "AuditOnly": False,

    +        "AuditOnly": True,

             "IgnoreFiles": [

                 "Library/ArmSoftFloatLib/berkeley-softfloat-3/**"

             ],                           # use gitignore syntax to ignore errors

    diff --git a/ArmVirtPkg/ArmVirtPkg.ci.yaml b/ArmVirtPkg/ArmVirtPkg.ci.yaml
    index d5d63ddd4fd7..1e799dc4e194 100644
    --- a/ArmVirtPkg/ArmVirtPkg.ci.yaml
    +++ b/ArmVirtPkg/ArmVirtPkg.ci.yaml
    @@ -96,7 +96,7 @@


         ## options defined .pytool/Plugin/SpellCheck

         "SpellCheck": {

    -        "AuditOnly": False,           # Fails right now with over 270 errors

    +        "AuditOnly": True,

             "IgnoreFiles": [],           # use gitignore syntax to ignore errors in matching files

             "ExtendWords": [

                 "acpiview",

    -- 
    2.35.1



    -=-=-=-=-=-=
    Groups.io Links: You receive all messages sent to this group.
    View/Reply Online (#93445): https://edk2.groups.io/g/devel/message/93445
    Mute This Topic: https://groups.io/mt/93527356/1779659
    Group Owner: devel+owner@edk2.groups.io
    Unsubscribe: https://edk2.groups.io/g/devel/unsub [sami.mujawar@arm.com]
    -=-=-=-=-=-=




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

end of thread, other threads:[~2022-09-08  7:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-07 15:27 [PATCH] ArmPkg, ArmVirtPkg: put SpellCheck in AuditOnly mode Ard Biesheuvel
2022-09-07 15:33 ` Michael Kubacki
2022-09-07 16:11 ` [edk2-devel] " Rebecca Cran
2022-09-08  7:30 ` Sami Mujawar

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