diff options
author | Luca Sas <sas.luca.alex@gmail.com> | 2021-08-23 00:05:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 00:05:31 +0100 |
commit | d227d3c609c4b95fa9c8a0ba5a10e7c47bcb984c (patch) | |
tree | 20aeab4c18d76c344e2ce1f16913b39c447659b1 /libs/raylib/src/external/glfw/.travis.yml | |
parent | eebaddf29efad9bc7b82d8745d839931f08ef887 (diff) | |
parent | 3a1d97f556bc4c5384799ac121640984b590c05c (diff) | |
download | gamejam-slgj-2024-d227d3c609c4b95fa9c8a0ba5a10e7c47bcb984c.tar.gz gamejam-slgj-2024-d227d3c609c4b95fa9c8a0ba5a10e7c47bcb984c.tar.bz2 gamejam-slgj-2024-d227d3c609c4b95fa9c8a0ba5a10e7c47bcb984c.zip |
Merge pull request #4 from thclmnt/master
Updated to raylib 3.7
Diffstat (limited to 'libs/raylib/src/external/glfw/.travis.yml')
-rw-r--r-- | libs/raylib/src/external/glfw/.travis.yml | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/libs/raylib/src/external/glfw/.travis.yml b/libs/raylib/src/external/glfw/.travis.yml deleted file mode 100644 index 804b864..0000000 --- a/libs/raylib/src/external/glfw/.travis.yml +++ /dev/null @@ -1,78 +0,0 @@ -language: c -compiler: clang -branches: - only: - - ci - - master -sudo: false -dist: trusty -addons: - apt: - packages: - - cmake - - libxrandr-dev - - libxinerama-dev - - libxcursor-dev - - libxi-dev -matrix: - include: - - os: linux - env: - - BUILD_SHARED_LIBS=ON - - CFLAGS=-Werror - - os: linux - env: - - BUILD_SHARED_LIBS=OFF - - CFLAGS=-Werror - - os: linux - sudo: required - addons: - apt: - packages: - - libwayland-dev - - libxkbcommon-dev - - libegl1-mesa-dev - env: - - USE_WAYLAND=ON - - BUILD_SHARED_LIBS=ON - - CFLAGS=-Werror - - os: linux - sudo: required - addons: - apt: - packages: - - libwayland-dev - - libxkbcommon-dev - - libegl1-mesa-dev - env: - - USE_WAYLAND=ON - - BUILD_SHARED_LIBS=OFF - - CFLAGS=-Werror - - os: osx - env: - - BUILD_SHARED_LIBS=ON - - CFLAGS=-Werror - - os: osx - env: - - BUILD_SHARED_LIBS=OFF - - CFLAGS=-Werror -script: - - if grep -Inr '\s$' src include docs tests examples CMake *.md .gitattributes .gitignore; then echo Trailing whitespace found, aborting.; exit 1; fi - - mkdir build - - cd build - - if test -n "${USE_WAYLAND}"; - then wget https://mirrors.kernel.org/ubuntu/pool/universe/e/extra-cmake-modules/extra-cmake-modules_5.38.0a-0ubuntu1_amd64.deb; - sudo dpkg -i extra-cmake-modules_5.38.0a-0ubuntu1_amd64.deb; - git clone git://anongit.freedesktop.org/wayland/wayland-protocols; - pushd wayland-protocols; - git checkout 1.15 && ./autogen.sh --prefix=/usr && make && sudo make install; - popd; - fi - - cmake -DCMAKE_VERBOSE_MAKEFILE=ON -DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS} -DGLFW_USE_WAYLAND=${USE_WAYLAND} .. - - cmake --build . -notifications: - email: - recipients: - - ci@glfw.org - on_success: never - on_failure: always |