Skip to content

Commit 5758d8b

Browse files
cirrus test
1 parent 877fe35 commit 5758d8b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.cirrus.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
macos_instance:
2+
image: ghcr.io/cirruslabs/macos-monterey-xcode:latest
3+
4+
task:
5+
build_raylib_script:
6+
- git submodule update --init --recursive
7+
- cd raylib-c
8+
- mkdir build
9+
- cd build
10+
- cmake -DBUILD_EXAMPLES=off -DINCLUDE_EVERYTHING=on -DSUPPORT_FILEFORMAT_JPG=on -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release ..
11+
- make -j2
12+
- sudo make install
13+
build_script:
14+
- sudo cp physac/src/physac.h /usr/local/include/
15+
- sudo cp raygui/src/raygui.h /usr/local/include/
16+
- python -m pip install --upgrade pip
17+
- pip3 install cffi
18+
- pip3 install setuptools
19+
- pip3 install wheel
20+
- python setup.py bdist_wheel

0 commit comments

Comments
 (0)