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:
6
6
7
7
task :
8
8
setup_script :
9
+ - brew update
9
10
10
11
build_raylib_script :
11
12
- git submodule update --init --recursive
12
13
- cd raylib-c
13
14
- mkdir build
14
15
- cd build
15
16
- cmake -DBUILD_EXAMPLES=off -DINCLUDE_EVERYTHING=on -DSUPPORT_FILEFORMAT_JPG=on -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release ..
16
- - make -j2
17
+ - make -j8
17
18
- sudo make install
18
19
build_script :
19
20
- sudo cp physac/src/physac.h /usr/local/include/
20
21
- 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