File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -6,20 +6,23 @@ macos_instance:
66
77task :
88 setup_script :
9+ - brew update
910 - brew install python@3.11
1011 build_raylib_script :
1112 - git submodule update --init --recursive
1213 - cd raylib-c
1314 - mkdir build
1415 - cd build
1516 - cmake -DBUILD_EXAMPLES=off -DINCLUDE_EVERYTHING=on -DSUPPORT_FILEFORMAT_JPG=on -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release ..
16- - make -j2
17+ - make -j8
1718 - sudo make install
1819 build_script :
1920 - sudo cp physac/src/physac.h /usr/local/include/
2021 - sudo cp raygui/src/raygui.h /usr/local/include/
21- - python -m pip install --upgrade pip
22- - pip3 install cffi
23- - pip3 install setuptools
24- - pip3 install wheel
25- - python3 setup.py bdist_wheel
22+ - /opt/homebrew/bin/python3 -m pip install --upgrade pip
23+ - /opt/homebrew/bin/python3 -m pip install cffi
24+ - /opt/homebrew/bin/python3 -m pip install setuptools
25+ - /opt/homebrew/bin/python3 -m pip install wheel
26+ - /opt/homebrew/bin/python3 setup.py bdist_wheel
27+ artifacts :
28+ path : " dist/*"
You can’t perform that action at this time.
0 commit comments