Skip to content

Commit

Permalink
rustup update on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
lilith committed Apr 3, 2023
1 parent 4ec69b7 commit 966958e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ jobs:
runs-on: ${{matrix.os}}
steps:
- run: rustup show

- run: rustup update stable
if: ${{contains( matrix.os, 'macos' )}}


- name: Checkout code
uses: actions/checkout@v3
- uses: FranzDiebold/github-env-vars-action@v1.3.0
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- run: rustup update stable
if: ${{contains( matrix.os, 'macos' )}}


### Cargo Cache for Build Artifacts ###
- name: Cache cargo
uses: actions/cache@v3
Expand Down

1 comment on commit 966958e

@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 for details.

Unrecognized words (3)

DOCKERCLOUD
dtolnay
VAAPI

Previously acknowledged words that are now absent abi Affero amd anshulrgoyal api argb ARGN ASingle aspectforce ATL Autoscaler autostart avx backtraces bgra bicubic bigint bss BTree busybox cacert cachedstaticproxy catmullromfastsharp cerror cgi changeset chpasswd clienthints concat Condvar cpuinfo crlf crt crtstuff csharp CSpace cstr CStyle csu DATAERR dbg Debounce Deduplicated dhparam dockercloud dockerd donovanmuller downscaleonly DSmaller dynstr dynsym edata eprint eprintln errored etag fasterinverseerf fasterlambertwexpx fastlambertwexpx ftp getres gettime gliderlabs gnubin gprof groupadd Gsize gst gstreamer gstvaapidecode gunzip halfpiminustwopi haproxy hashmap hdr hms homepage htpasswd IFD IFDIR IFMT IFREG imagesaturation infop intptr IOERR IRWXU ISDIR ISREG jpegs jrcs jrh libssl lookbehind macos mallocs maxheight maxwidth mingw mnt mouseover msbuild multirust netstandard nginx njones nodeinfo noinspection NOPERM nuget nyprogressivejpegwebperformanceux oem oom OSERR OSTYPE osx PDecode peaceiris PEncode Perma PGet pixelfordinner plt Pragmas preserveaspect println radware Readme REALTIME referer rela releasebuilds rels rfc rodata rowbytes rsa rsync semver Ses sharpenwhen shl showthread shstrtab SRCS srcset srgb srv sse ssize ssl stacktrace STREQUAL stringify strtab subfolder subpixel sudo sudoers sysctl systemctl TEMPFAIL tls TMC todo toolchain toolchains toosmall uchar uid umax uninstall unpackhi unpacklo uploader upscalecanvas uri urls useradd utc vaapi vfasterinverseerf vfasterlambertwexpx vfastlambertwexpx webp wget writeln xxhash :arrow_right:
To accept ✔️ these unrecognized words as correct and remove the previously acknowledged and now absent words, run the following commands

... in a clone of the git@github.com:imazen/imageflow.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/imazen/imageflow/actions/runs/4602011956/attempts/1'
Available 📚 dictionaries could cover words not in the 📘 dictionary

This includes both expected items (893) from .github/actions/spell-check/expect/expect.txt and unrecognized words (3)

Dictionary Entries Covers
cspell:python/src/python/python-lib.txt 3873 10
cspell:win32/src/win32.txt 53509 7
cspell:php/php.txt 2597 7
cspell:typescript/typescript.txt 1211 6
cspell:python/src/common/extra.txt 741 6

Consider adding them using (in .github/workflows/spelling.yml):

      with:
        extra_dictionaries:
          cspell:python/src/python/python-lib.txt
          cspell:win32/src/win32.txt
          cspell:php/php.txt
          cspell:typescript/typescript.txt
          cspell:python/src/common/extra.txt

To stop checking additional dictionaries, add:

      with:
        check_extra_dictionaries: ''
✏️ Contributor please read this
  • You can probably just add items into .github/actions/spell-check/expect/expect.txt.
  • If you need to use a specific token in one place and it shouldn't generally be used, you can
    add an item in .github/actions/spell-check/patterns.txt.
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.