diff options
| author | NRK <nrk@disroot.org> | 2023-01-12 04:52:28 +0000 |
|---|---|---|
| committer | NRK <nrk@disroot.org> | 2023-01-12 04:52:28 +0000 |
| commit | a924fe004df5e27fb0e35396e6a785f2d0c6fcf6 (patch) | |
| tree | 222e953a380d4f659f22f4f91d52a929d0e9dc64 /.github | |
| parent | 34d42951032c6bad6057d9c82893add1c94ade38 (diff) | |
[ci]: fix things (#400)
for the spellcheck issue, the solution was to just bypass the system
package manager and use pip.
and the macos workaround is taken from here:
https://github.com/actions/setup-python/issues/577
Reviewed-on: https://codeberg.org/nsxiv/nsxiv/pulls/400
Reviewed-by: explosion-mental <explosion-mental@noreply.codeberg.org>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 50ddebf..4619bb7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,7 +42,8 @@ jobs: - name: dep run: | brew update - brew install imlib2 libx11 libxft libexif giflib webp + # see: https://github.com/actions/setup-python/issues/577 + brew install imlib2 libx11 libxft libexif giflib webp || true - name: build run: | # libinotify-kqueue isn't available on homebrew |
