Skip to content

misc: 1.2.0-arduino Release #81

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Feb 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
40 changes: 0 additions & 40 deletions .circleci/clang_format.sh

This file was deleted.

16 changes: 0 additions & 16 deletions .circleci/clang_tidy.sh

This file was deleted.

99 changes: 0 additions & 99 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,108 +13,9 @@ jobs:
- run:
name: Build
command: ./.circleci/script_arduino.sh
build-linux-default:
machine: true
steps:
- checkout
- run:
name: Make scripts executable
command: sudo chmod -R +x ./.circleci/*.sh
- run:
name: Install
command: ./.circleci/install_platform_io.sh
- run:
name: Build
command: ./.circleci/script_platform_io.sh
build-linux-gcc7:
machine: true
steps:
- checkout
- run:
name: Install dependencies
command: |
sudo apt-get remove cmake cmake-data
sudo apt-add-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-add-repository -y ppa:george-edison55/cmake-3.x
sudo apt-get update
sudo apt-get -y install g++-7 lcov cmake
- run:
name: Make scripts executable
command: sudo chmod -R +x ./.circleci/*.sh
- run:
name: Environment variables
command: CC=gcc-7 && CXX=g++-7
- run:
name: Build
command: ./.circleci/script_desktop.sh
- run:
name: Codecov upload
command: bash <(curl -s https://codecov.io/bash)
build-linux-clang-5:
machine: true
steps:
- checkout
- run:
name: Install dependencies
command: |
sudo apt-get remove cmake cmake-data
sudo apt-add-repository -y "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-5.0 main"
sudo apt-add-repository -y ppa:george-edison55/cmake-3.x
sudo apt-get update
sudo apt-get -y install clang-5.0 clang-format-5.0 clang-tidy-5.0 lcov cmake
- run:
name: Make scripts executable
command: sudo chmod -R +x ./.circleci/*.sh
- run:
name: Environment variables
command: CC=clang-5.0 && CXX=clang++-5.0
- run:
name: Build
command: ./.circleci/script_desktop.sh
- run:
name: Clang Tidy
command: ./.circleci/clang_tidy.sh
- run:
name: Clang Format
command: ./.circleci/clang_format.sh

build-macos-9-2:
macos:
xcode: "9.2.0"
steps:
- checkout
- run: COMPILER=clang++
- run:
name: Install dependencies
command: brew install cmake lcov
- run:
name: Make scripts executable
command: sudo chmod -R +x ./.circleci/*.sh
- run:
name: Build
command: ./.circleci/script_desktop.sh
build-macos-9-3:
macos:
xcode: "9.3.0"
steps:
- checkout
- run:
name: Install dependencies
command: brew install cmake lcov
- run:
name: Make scripts executable
command: sudo chmod -R +x ./.circleci/*.sh
- run:
name: Build
command: ./.circleci/script_desktop.sh

workflows:
version: 2
build:
jobs:
- build-arduino-default
- build-linux-default
- build-linux-gcc7
- build-linux-clang-5
- build-macos-9-2
- build-macos-9-3
5 changes: 0 additions & 5 deletions .circleci/install_platform_io.sh

This file was deleted.

2 changes: 1 addition & 1 deletion .circleci/script_arduino.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ bash ./extras/ARDUINO_IDE.sh --auto
mkdir -p ~/Arduino/libraries/cpp-client/
mv ~/project/* ~/Arduino/libraries/cpp-client

arduino-cli compile --output temp.bin -b esp32:esp32:esp32 ~/Arduino/libraries/cpp-client/examples/arduino/ESP32/ESP32.ino --debug
arduino-cli compile --output temp.bin -b esp32:esp32:esp32 ~/Arduino/libraries/cpp-client/examples/ESP32/ESP32.ino --debug
13 changes: 0 additions & 13 deletions .circleci/script_desktop.sh

This file was deleted.

5 changes: 0 additions & 5 deletions .circleci/script_platform_io.sh

This file was deleted.

117 changes: 0 additions & 117 deletions .clang-format

This file was deleted.

3 changes: 0 additions & 3 deletions .codecov.yml

This file was deleted.

1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/README.md export-ignore
Loading