Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
c572739
change some builds to older opengl versions
electronstudio Dec 11, 2025
1e1dd13
linux32 drm fix
electronstudio Dec 11, 2025
a815b9a
update raylib to 5.6-dev
electronstudio Dec 11, 2025
f9d039d
sdl3
electronstudio Dec 11, 2025
7f177e7
try fix cmake, old raygui.h.modified, dont include camera on sdl build
electronstudio Dec 11, 2025
ce22f02
try fix cmake
electronstudio Dec 11, 2025
8fa5771
try sdl3 install linux
electronstudio Dec 11, 2025
32bd5dd
try build software, sdl for linux32
electronstudio Dec 11, 2025
4516b7d
bash is whitespace sensitive ?!?
electronstudio Dec 11, 2025
705cbb6
try fix windows
electronstudio Dec 12, 2025
47ff0b6
try fix windows
electronstudio Dec 12, 2025
abd5ee5
experiment windows bash
electronstudio Dec 12, 2025
4a58af8
experiment windows bash
electronstudio Dec 12, 2025
dd3b06f
pypi uploading
electronstudio Dec 12, 2025
c35aa4f
fix
electronstudio Dec 15, 2025
a9ac1a0
remove pypy3.10, fix linux build
electronstudio Dec 15, 2025
ab81874
update to latest
electronstudio Feb 6, 2026
4138cc4
attempt install twine as part of standard github actions build
electronstudio Feb 6, 2026
dd1babd
try older cryptography package for linux32 build
electronstudio Feb 6, 2026
908e7eb
rpi update instructions
electronstudio Feb 7, 2026
bd0d623
update to 6.0
electronstudio Apr 25, 2026
dadfa65
update SDL version
electronstudio Apr 25, 2026
6927653
fix update SDL version
electronstudio Apr 25, 2026
8b77e45
remove cmake option causing broken builds of Raylib 6.0
electronstudio Apr 25, 2026
837d141
update dynamic lib dlls
electronstudio Apr 25, 2026
d6628e8
try change to readme to please spinx
electronstudio Apr 25, 2026
626ef29
docs update
electronstudio Apr 26, 2026
e093c05
try to fix raylib 6.0 cmake problem again
electronstudio Apr 26, 2026
b7be7c5
add more software rendering builds
electronstudio Apr 26, 2026
5871ff4
forget a sudo
electronstudio Apr 26, 2026
aa74be0
Update build.yml
electronstudio May 3, 2026
9a6064f
Update build.yml
electronstudio May 3, 2026
6154eeb
Update build.yml
electronstudio May 3, 2026
ba3a25a
fix
electronstudio May 3, 2026
4df676b
fix
electronstudio May 3, 2026
6c78a5b
main for testing
electronstudio May 5, 2026
6405b63
Update README.md
electronstudio May 5, 2026
61b459b
Update README.md
electronstudio May 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ pi_task:
- cd raylib-c
- mkdir build
- cd build
- cmake -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release ..
- cmake -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_BUSY_WAIT_LOOP=OFF -DSUPPORT_CUSTOM_FRAME_CONTROL=OFF -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release ..
- make -j2
- make install
build_raylib_again_script:
- cd raylib-c
- mkdir build2
- cd build2
- cmake -DPLATFORM=${RAYLIB_PLATFORM} -DOPENGL_VERSION="${RAYLIB_OPENGL}" -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release ..
- cmake -DPLATFORM=${RAYLIB_PLATFORM} -DOPENGL_VERSION="${RAYLIB_OPENGL}" -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_BUSY_WAIT_LOOP=OFF -DSUPPORT_CUSTOM_FRAME_CONTROL=OFF -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release ..
- make -j2
- cp raylib/libraylib.a /usr/local/lib/libraylib.a
build_script:
Expand Down Expand Up @@ -113,14 +113,14 @@ mac_task:
- cd raylib-c
- mkdir build
- cd build
- cmake -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release ..
- cmake -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_BUSY_WAIT_LOOP=OFF -DSUPPORT_CUSTOM_FRAME_CONTROL=OFF -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release ..
- make -j8
- sudo make install
build_raylib_again_script:
- cd raylib-c
- mkdir build2
- cd build2
- cmake -DPLATFORM=${RAYLIB_PLATFORM} -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release ..
- cmake -DPLATFORM=${RAYLIB_PLATFORM} -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_BUSY_WAIT_LOOP=OFF -DSUPPORT_CUSTOM_FRAME_CONTROL=OFF -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release ..
- make -j8
- sudo cp raylib/libraylib.a /usr/local/lib/libraylib.a
build_script:
Expand Down
Loading
Loading