From fe8e2e477d61905477b6dbfa267c3dc6200d12b0 Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Wed, 19 Jan 2022 00:26:03 +0100 Subject: [PATCH] Removed travis CI (#6532) --- .travis.yml | 198 ---------------------------------------------------- README.md | 2 +- 2 files changed, 1 insertion(+), 199 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 4c4b4f5a88..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,198 +0,0 @@ -language: cpp -dist: trusty -sudo: false - -matrix: - include: -# First check if all our options are good -# Renewal without VIP - - os: linux - addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-5 - env: - - MATRIX_EVAL="CC=gcc-5 && CXX=g++-5" - - CONFIGURE_FLAGS="--enable-prere=no --enable-vip=no --enable-buildbot=yes" -# Renewal with VIP - - os: linux - addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-5 - env: - - MATRIX_EVAL="CC=gcc-5 && CXX=g++-5" - - CONFIGURE_FLAGS="--enable-prere=yes --enable-vip=no --enable-buildbot=yes" -# Pre-Renewal without VIP - - os: linux - addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-5 - env: - - MATRIX_EVAL="CC=gcc-5 && CXX=g++-5" - - CONFIGURE_FLAGS="--enable-prere=no --enable-vip=yes --enable-buildbot=yes" -# Pre-Renewal with VIP - - os: linux - addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-5 - env: - - MATRIX_EVAL="CC=gcc-5 && CXX=g++-5" - - CONFIGURE_FLAGS="--enable-prere=yes --enable-vip=yes --enable-buildbot=yes" -# After that check all different compilers and compiler versions -# GCC -# Version 6 - - os: linux - addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-6 - env: - - MATRIX_EVAL="CC=gcc-6 && CXX=g++-6" - - CONFIGURE_FLAGS="--enable-prere=no --enable-vip=no --enable-buildbot=yes" -# Version 7 - - os: linux - addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-7 - env: - - MATRIX_EVAL="CC=gcc-7 && CXX=g++-7" - - CONFIGURE_FLAGS="--enable-prere=no --enable-vip=no --enable-buildbot=yes" -# Version 8 - - os: linux - addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-8 - env: - - MATRIX_EVAL="CC=gcc-8 && CXX=g++-8" - - CONFIGURE_FLAGS="--enable-prere=no --enable-vip=no --enable-buildbot=yes" -# Clang -# Version 3.9 - - os: linux - addons: - apt: - sources: - - llvm-toolchain-trusty-3.9 - packages: - - clang-3.9 - env: - - MATRIX_EVAL="CC=clang-3.9 && CXX=clang++-3.9" - - CONFIGURE_FLAGS="--enable-prere=no --enable-vip=no --enable-buildbot=yes" -# Version 4 - - os: linux - addons: - apt: - sources: - - llvm-toolchain-trusty-4.0 - packages: - - clang-4.0 - env: - - MATRIX_EVAL="CC=clang-4.0 && CXX=clang++-4.0" - - CONFIGURE_FLAGS="--enable-prere=no --enable-vip=no --enable-buildbot=yes" -# Version 5 - - os: linux - addons: - apt: - sources: - - llvm-toolchain-trusty-5.0 - packages: - - clang-5.0 - env: - - MATRIX_EVAL="CC=clang-5.0 && CXX=clang++-5.0" - - CONFIGURE_FLAGS="--enable-prere=no --enable-vip=no --enable-buildbot=yes" -# LLVM on OSX -# - os: osx -# osx_image: xcode9.2 -# install: -# - brew update -# - brew install mysql -# - brew tap homebrew/services -# - brew services start mysql -## MySQL takes a while to start... -# - brew services list -# - launchctl list | grep mysql -# before_install: false -# env: -# - CONFIGURE_FLAGS="--enable-prere=no --enable-vip=no --enable-buildbot=yes --enable-lto=no" -# script: -# - ./configure $CONFIGURE_FLAGS -## MacOS default MySQL configuration does not like our card seller(only full group by) -# - ./tools/ci/npc.sh -# - make clean -# - make all -# - ./login-server --run-once -# - ./char-server --run-once -# - ./map-server --run-once -# CMake - - os: linux - addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-5 - env: - - MATRIX_EVAL="CC=gcc-5 && CXX=g++-5" - script: - - mkdir cbuild - - cd cbuild - - cmake -G "Unix Makefiles" .. - - make || travis_terminate 1 -# MariaDB - - os: linux - addons: - mariadb: '10.0' - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-5 - - libmariadbclient-dev - env: - - MATRIX_EVAL="CC=gcc-5 && CXX=g++-5" - - CONFIGURE_FLAGS="--enable-prere=no --enable-vip=no --enable-buildbot=yes" - -before_install: - - eval "${MATRIX_EVAL}" - -before_script: - - uname -a - - ./tools/ci/sql.sh - -script: - - ./configure $CONFIGURE_FLAGS || travis_terminate 1 - - ./tools/ci/npc.sh - - make clean || travis_terminate 1 - - make all || travis_terminate 1 - - ./login-server --run-once - - ./char-server --run-once - - ./map-server --run-once - -env: - global: - - DB_ROOT="root" - - DB_HOST="127.0.0.1" - - DB_NAME="ragnarok" - - DB_USER="ragnarok" - - DB_PASS="ragnarok" - -notifications: - email: false diff --git a/README.md b/README.md index aa55726d98..186fe726a8 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # rAthena -[![Build Status](https://travis-ci.org/rathena/rathena.png?branch=master)](https://travis-ci.org/rathena/rathena) [![Total alerts](https://img.shields.io/lgtm/alerts/g/rathena/rathena.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/rathena/rathena/alerts/) [![Language grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/rathena/rathena.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/rathena/rathena/context:cpp) ![GitHub](https://img.shields.io/github/license/rathena/rathena.svg) ![GitHub repo size](https://img.shields.io/github/repo-size/rathena/rathena.svg) +[![Total alerts](https://img.shields.io/lgtm/alerts/g/rathena/rathena.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/rathena/rathena/alerts/) [![Language grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/rathena/rathena.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/rathena/rathena/context:cpp) ![GitHub](https://img.shields.io/github/license/rathena/rathena.svg) ![GitHub repo size](https://img.shields.io/github/repo-size/rathena/rathena.svg) > rAthena is a collaborative software development project revolving around the creation of a robust massively multiplayer online role playing game (MMORPG) server package. Written in C, the program is very versatile and provides NPCs, warps and modifications. The project is jointly managed by a group of volunteers located around the world as well as a tremendous community providing QA and support. rAthena is a continuation of the eAthena project. [Forum](https://rathena.org/board)|[Discord](https://rathena.org/discord)|[Wiki](https://github.com/rathena/rathena/wiki)|[FluxCP](https://github.com/rathena/FluxCP)|[Crowdfunding](https://rathena.org/board/crowdfunding/)|[Fork and Pull Request Q&A](https://rathena.org/board/topic/86913-pull-request-qa/)