File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ # container:
2
+ # image: python:3.11
3
+
4
+
5
+
6
+ task :
7
+ macos_instance :
8
+ matrix :
9
+ - image : ghcr.io/cirruslabs/macos-monterey-xcode:latest
10
+ - image : ghcr.io/cirruslabs/macos-ventura-xcode:latest
11
+ env :
12
+ matrix :
13
+ - PY_VER : " 3.9"
14
+ - PY_VER : " 3.10"
15
+ - PY_VER : " 3.11"
16
+ setup_script :
17
+ - brew update
18
+ - brew install python@${PY_VER}
19
+ build_raylib_script :
20
+ - git submodule update --init --recursive
21
+ - cd raylib-c
22
+ - mkdir build
23
+ - cd build
24
+ - cmake -DBUILD_EXAMPLES=off -DINCLUDE_EVERYTHING=on -DSUPPORT_FILEFORMAT_JPG=on -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release ..
25
+ - make -j8
26
+ - sudo make install
27
+ build_script :
28
+ - sudo cp physac/src/physac.h /usr/local/include/
29
+ - sudo cp raygui/src/raygui.h /usr/local/include/
30
+ - /opt/homebrew/bin/python${PY_VER} -m pip install --upgrade pip
31
+ - /opt/homebrew/bin/python${PY_VER} -m pip install cffi
32
+ - /opt/homebrew/bin/python${PY_VER} -m pip install setuptools
33
+ - /opt/homebrew/bin/python${PY_VER} -m pip install wheel
34
+ - /opt/homebrew/bin/python${PY_VER} setup.py bdist_wheel
35
+ artifacts :
36
+ path : " dist/*"
You can’t perform that action at this time.
0 commit comments