Skip to content

Commit

Permalink
240501.212159.HKT fix cmake.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zaikunzhang committed May 1, 2024
1 parent 99e8f79 commit 870b238
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
cmake --version
VERBOSE_MAKEFILE=OFF
if [[ ${{ github.event.inputs.verbose-makefile }} == 'true' ]] ; then
if [[ "${{ github.event.inputs.verbose-makefile }}" == "true" ]] ; then
VERBOSE_MAKEFILE=ON
fi
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
cmake --version
VERBOSE_MAKEFILE=OFF
if [[ ${{ github.event.inputs.verbose-makefile }} == 'true' ]] ; then
if [[ "${{ github.event.inputs.verbose-makefile }}" == "true" ]] ; then
VERBOSE_MAKEFILE=ON
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
cmake --version
VERBOSE_MAKEFILE=OFF
if [[ ${{ github.event.inputs.verbose-makefile }} == 'true' ]] ; then
if [[ "${{ github.event.inputs.verbose-makefile }}" == "true" ]] ; then
VERBOSE_MAKEFILE=ON
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake_mac_nagfor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
cmake --version
VERBOSE_MAKEFILE=OFF
if [[ ${{ github.event.inputs.verbose-makefile }} == 'true' ]] ; then
if [[ "${{ github.event.inputs.verbose-makefile }}" == "true" ]] ; then
VERBOSE_MAKEFILE=ON
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake_nagfor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
cmake --version
VERBOSE_MAKEFILE=OFF
if [[ ${{ github.event.inputs.verbose-makefile }} == 'true' ]] ; then
if [[ "${{ github.event.inputs.verbose-makefile }}" == "true" ]] ; then
VERBOSE_MAKEFILE=ON
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake_pi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
cmake --version
VERBOSE_MAKEFILE=OFF
if [[ ${{ github.event.inputs.verbose-makefile }} == 'true' ]] ; then
if [[ "${{ github.event.inputs.verbose-makefile }}" == "true" ]] ; then
VERBOSE_MAKEFILE=ON
fi
Expand Down

1 comment on commit 870b238

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@check-spelling-bot Report

🔴 Please review

See the 📜action log or 📝 job summary for details.

Unrecognized words (2)

FLGS
ICX

Some files were automatically ignored 🙈

These sample patterns would exclude them:

^\Qpython/profiles/bobyqa.txt\E$
^\Qpython/profiles/cobyla.txt\E$
^\Qpython/profiles/lincoa.txt\E$
^\Qpython/profiles/uobyqa_newuoa.txt\E$

You should consider adding them to:

.github/actions/spelling/excludes.txt

File matching is via Perl regular expressions.

To check these files, more of their words need to be in the dictionary than not. You can use patterns.txt to exclude portions, add items to the dictionary (e.g. by adding them to allow.txt), or fix typos.

To accept these unrecognized words as correct and update file exclusions, you could run the following commands

... in a clone of the [email protected]:libprima/prima.git repository
on the main branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/main/apply.pl' |
perl - 'https://github.com/libprima/prima/actions/runs/8909906831/attempts/1'
Warnings (1)

See the 📜action log or 📝 job summary for details.

ℹ️ Warnings Count
ℹ️ noisy-file 4

See ℹ️ Event descriptions for more information.

If the flagged items are 🤯 false positives

If items relate to a ...

  • binary file (or some other file you wouldn't want to check at all).

    Please add a file path to the excludes.txt file matching the containing file.

    File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.

    ^ refers to the file's path from the root of the repository, so ^README\.md$ would exclude README.md (on whichever branch you're using).

  • well-formed pattern.

    If you can write a pattern that would match it,
    try adding it to the patterns.txt file.

    Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.

    Note that patterns can't match multiline strings.

Please sign in to comment.