Skip to content

Commit 49003d9

Browse files
cirrus test
1 parent e6a7492 commit 49003d9

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.cirrus.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,23 @@ macos_instance:
66

77
task:
88
setup_script:
9+
- brew update
910
- brew install [email protected]
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/*"

0 commit comments

Comments
 (0)