diff --git a/.travis.yml b/.travis.yml index 45a5df82..982e99c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,10 +9,6 @@ language: cpp # It is more tedious, but grants us far more flexibility. matrix: include: - - os: linux - before_install: chmod -R +x ./ci/*platformio.sh - install: ./ci/install-platformio.sh - script: ./ci/build-platformio.sh - os: linux dist: bionic compiler: gcc diff --git a/ci/build-platformio.sh b/ci/build-platformio.sh deleted file mode 100644 index 1d7658d8..00000000 --- a/ci/build-platformio.sh +++ /dev/null @@ -1,2 +0,0 @@ -# run PlatformIO builds -platformio run diff --git a/ci/install-platformio.sh b/ci/install-platformio.sh deleted file mode 100644 index 4d7860a5..00000000 --- a/ci/install-platformio.sh +++ /dev/null @@ -1,5 +0,0 @@ -# install PlatformIO -sudo pip install -U platformio - -# update PlatformIO -platformio update diff --git a/platformio.ini b/platformio.ini deleted file mode 100644 index 7be1f7d5..00000000 --- a/platformio.ini +++ /dev/null @@ -1,47 +0,0 @@ -; PlatformIO Project Configuration File -; -; Build options: build flags, source filter -; Upload options: custom upload port, speed and extra flags -; Library options: dependencies, extra library storages -; Advanced options: extra scripting -; -; Please visit documentation for the other options and examples -; http://docs.platformio.org/page/projectconf.html - - -[platformio] -#src_dir = ./googlemock -#src_dir = ./googletest -src_dir = . - -[env:googletest_esp32] -platform = espressif32 -board = esp32dev -framework = arduino -build_flags = -I./googletest/include -I./googletest -src_filter = +<*> -<.git/> - - - - + + -upload_speed = 921600 - -[env:googlemock_esp32] -platform = espressif32 -board = esp32dev -framework = arduino -build_flags = -I./googlemock/include -I./googletest/include -I./googletest -I./googlemock -src_filter = +<*> -<.git/> - - - + + + -upload_speed = 921600 - -[env:googletest_esp8266] -platform = espressif8266 -board = huzzah -framework = arduino -build_flags = -I./googletest/include -I./googletest -src_filter = +<*> -<.git/> - - - - - - + + -upload_speed = 921600 - -[env:googlemock_esp8266] -platform = espressif8266 -board = huzzah -framework = arduino -build_flags = -I./googlemock/include -I./googletest/include -I./googletest -I./googlemock -src_filter = +<*> -<.git/> - - - + + + -upload_speed = 921600 \ No newline at end of file