Skip to content

Commit

Permalink
Update macOS CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettsummerfi3ld authored Feb 1, 2024
1 parent 756988a commit 0ddd2ae
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,10 @@ jobs:
cache: true

- name: Install dependencies
run: brew install boost glew freeimage mpv vulkan-headers vulkan-loader brotli gdal
run: |
brew update
brew upgrade
brew install boost glew freeimage mpv vulkan-headers vulkan-loader brotli gdal
# The project will fail to compile unless you run CMake twice, very strange issue
- name: Configure CMake
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,10 @@ jobs:
cache: true

- name: Install dependencies
run: brew install boost glew freeimage mpv vulkan-headers vulkan-loader brotli gdal
run: |
brew update
brew upgrade
brew install boost glew freeimage mpv vulkan-headers vulkan-loader brotli gdal
# The project will fail to compile unless you run CMake twice
- name: Configure CMake
Expand Down

0 comments on commit 0ddd2ae

Please sign in to comment.