diff options
author | Carlo Cabrera <30379873+carlocab@users.noreply.github.com> | 2022-10-04 20:21:40 +0800 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-10-24 21:13:34 -0400 |
commit | 4287099f06f522f632b1a98b76d8387a7a8bd778 (patch) | |
tree | a2c8f15d2bdf486c98582d590e7b8bc9e2fa9555 | |
parent | c96e40f7274d509366371f47303d11f2a4b413ee (diff) | |
download | meson-4287099f06f522f632b1a98b76d8387a7a8bd778.zip meson-4287099f06f522f632b1a98b76d8387a7a8bd778.tar.gz meson-4287099f06f522f632b1a98b76d8387a7a8bd778.tar.bz2 |
ci: run `brew update` before `brew install`
This makes sure we don't end up picking up an older version of LLVM that
does not work.
-rw-r--r-- | .github/workflows/macos.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index d8797b8..b6aa843 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -67,6 +67,8 @@ jobs: steps: - uses: actions/checkout@v2 + # Avoid picking up an older version of LLVM that does not work. + - run: brew update # use python3 from homebrew because it is a valid framework, unlike the actions one: # https://github.com/actions/setup-python/issues/58 - run: brew install pkg-config ninja llvm qt@5 boost ldc hdf5 openmpi lapack scalapack sdl2 python3 boost-python3 gtk-doc |