mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18:18 +00:00
Merge #6183
6183: Try to fix macOS CI failure again r=heinrich5991 a=def- <!-- What is the motivation for the changes of this pull request? --> <!-- Note that builds and other checks will be run for your change. Don't feel intimidated by failures in some of the checks. If you can't resolve them yourself, experienced devs can also resolve them before merging your pull request. --> ## Checklist - [ ] Tested the change ingame - [ ] Provided screenshots if it is a visual change - [ ] Tested in combination with possibly related configuration options - [ ] Written a unit test (especially base/) or added coverage to integration test - [ ] Considered possible null pointers and out of bounds array indexing - [ ] Changed no physics that affect existing maps - [ ] Tested the change with [ASan+UBSan or valgrind's memcheck](https://github.com/ddnet/ddnet/#using-addresssanitizer--undefinedbehavioursanitizer-or-valgrinds-memcheck) (optional) Co-authored-by: def <dennis@felsin9.de>
This commit is contained in:
commit
2a63277aa5
3
.github/workflows/build.yaml
vendored
3
.github/workflows/build.yaml
vendored
|
@ -88,8 +88,9 @@ jobs:
|
||||||
if: contains(matrix.os, 'macOS')
|
if: contains(matrix.os, 'macOS')
|
||||||
run: |
|
run: |
|
||||||
brew update || true
|
brew update || true
|
||||||
|
brew install pkg-config sdl2 ffmpeg ninja molten-vk vulkan-headers glslang spirv-tools || true
|
||||||
# --overwrite for: Target /usr/local/bin/2to3 already exists.
|
# --overwrite for: Target /usr/local/bin/2to3 already exists.
|
||||||
brew install --overwrite pkg-config sdl2 ffmpeg python3 ninja molten-vk vulkan-headers glslang spirv-tools
|
brew link --overwrite python@3.10
|
||||||
brew upgrade freetype
|
brew upgrade freetype
|
||||||
pip3 install dmgbuild
|
pip3 install dmgbuild
|
||||||
echo /Library/Frameworks/Python.framework/Versions/3.11/bin >> $GITHUB_PATH
|
echo /Library/Frameworks/Python.framework/Versions/3.11/bin >> $GITHUB_PATH
|
||||||
|
|
Loading…
Reference in a new issue