Commit f6ce9ab8 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Remove AppVeyor and Travis configs

parent 8a2e5244
Loading
Loading
Loading
Loading

.appveyor.yml

deleted100644 → 0
+0 −15
Original line number Original line Diff line number Diff line
version: '1.0.{build}'

image: Visual Studio 2017

install:
    - git submodule update --init --recursive

before_build:
    - cmake -DBUILD_TESTS=True -DBUILD_EXAMPLES=True .

build:
    project: $(APPVEYOR_BUILD_FOLDER)\gdcpp.sln

test_script:
    - '%APPVEYOR_BUILD_FOLDER%\test\Debug\run_tests.exe'

.travis.yml

deleted100644 → 0
+0 −21
Original line number Original line Diff line number Diff line
language: cpp

compiler:
    - gcc

dist: trusty

sudo: required

before_install:
  - sudo apt-get update -qq
  - sudo apt-get install -qq build-essential cmake

install:

script:
    - mkdir build
    - cd build
    - cmake -DBUILD_TESTS=True -DBUILD_EXAMPLES=True ..
    - make
    - ./test/run_tests