Skip to content

Commit 94dd35f

Browse files
sleepdefic1tfaustbrian
authored andcommitted
chore(release): 1.2.0-arduino (#81)
1 parent a068603 commit 94dd35f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+4
-5598
lines changed

.circleci/clang_format.sh

-40
This file was deleted.

.circleci/clang_tidy.sh

-16
This file was deleted.

.circleci/config.yml

-99
Original file line numberDiff line numberDiff line change
@@ -13,108 +13,9 @@ jobs:
1313
- run:
1414
name: Build
1515
command: ./.circleci/script_arduino.sh
16-
build-linux-default:
17-
machine: true
18-
steps:
19-
- checkout
20-
- run:
21-
name: Make scripts executable
22-
command: sudo chmod -R +x ./.circleci/*.sh
23-
- run:
24-
name: Install
25-
command: ./.circleci/install_platform_io.sh
26-
- run:
27-
name: Build
28-
command: ./.circleci/script_platform_io.sh
29-
build-linux-gcc7:
30-
machine: true
31-
steps:
32-
- checkout
33-
- run:
34-
name: Install dependencies
35-
command: |
36-
sudo apt-get remove cmake cmake-data
37-
sudo apt-add-repository -y ppa:ubuntu-toolchain-r/test
38-
sudo apt-add-repository -y ppa:george-edison55/cmake-3.x
39-
sudo apt-get update
40-
sudo apt-get -y install g++-7 lcov cmake
41-
- run:
42-
name: Make scripts executable
43-
command: sudo chmod -R +x ./.circleci/*.sh
44-
- run:
45-
name: Environment variables
46-
command: CC=gcc-7 && CXX=g++-7
47-
- run:
48-
name: Build
49-
command: ./.circleci/script_desktop.sh
50-
- run:
51-
name: Codecov upload
52-
command: bash <(curl -s https://codecov.io/bash)
53-
build-linux-clang-5:
54-
machine: true
55-
steps:
56-
- checkout
57-
- run:
58-
name: Install dependencies
59-
command: |
60-
sudo apt-get remove cmake cmake-data
61-
sudo apt-add-repository -y "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-5.0 main"
62-
sudo apt-add-repository -y ppa:george-edison55/cmake-3.x
63-
sudo apt-get update
64-
sudo apt-get -y install clang-5.0 clang-format-5.0 clang-tidy-5.0 lcov cmake
65-
- run:
66-
name: Make scripts executable
67-
command: sudo chmod -R +x ./.circleci/*.sh
68-
- run:
69-
name: Environment variables
70-
command: CC=clang-5.0 && CXX=clang++-5.0
71-
- run:
72-
name: Build
73-
command: ./.circleci/script_desktop.sh
74-
- run:
75-
name: Clang Tidy
76-
command: ./.circleci/clang_tidy.sh
77-
- run:
78-
name: Clang Format
79-
command: ./.circleci/clang_format.sh
80-
81-
build-macos-9-2:
82-
macos:
83-
xcode: "9.2.0"
84-
steps:
85-
- checkout
86-
- run: COMPILER=clang++
87-
- run:
88-
name: Install dependencies
89-
command: brew install cmake lcov
90-
- run:
91-
name: Make scripts executable
92-
command: sudo chmod -R +x ./.circleci/*.sh
93-
- run:
94-
name: Build
95-
command: ./.circleci/script_desktop.sh
96-
build-macos-9-3:
97-
macos:
98-
xcode: "9.3.0"
99-
steps:
100-
- checkout
101-
- run:
102-
name: Install dependencies
103-
command: brew install cmake lcov
104-
- run:
105-
name: Make scripts executable
106-
command: sudo chmod -R +x ./.circleci/*.sh
107-
- run:
108-
name: Build
109-
command: ./.circleci/script_desktop.sh
11016

11117
workflows:
11218
version: 2
11319
build:
11420
jobs:
11521
- build-arduino-default
116-
- build-linux-default
117-
- build-linux-gcc7
118-
- build-linux-clang-5
119-
- build-macos-9-2
120-
- build-macos-9-3

.circleci/install_platform_io.sh

-5
This file was deleted.

.circleci/script_arduino.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ bash ./extras/ARDUINO_IDE.sh --auto
55
mkdir -p ~/Arduino/libraries/cpp-client/
66
mv ~/project/* ~/Arduino/libraries/cpp-client
77

8-
arduino-cli compile --output temp.bin -b esp32:esp32:esp32 ~/Arduino/libraries/cpp-client/examples/arduino/ESP32/ESP32.ino --debug
8+
arduino-cli compile --output temp.bin -b esp32:esp32:esp32 ~/Arduino/libraries/cpp-client/examples/ESP32/ESP32.ino --debug

.circleci/script_desktop.sh

-13
This file was deleted.

.circleci/script_platform_io.sh

-5
This file was deleted.

.clang-format

-117
This file was deleted.

.codecov.yml

-3
This file was deleted.

.gitattributes

-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@
55
/.editorconfig export-ignore
66
/.gitattributes export-ignore
77
/.gitignore export-ignore
8-
/README.md export-ignore

0 commit comments

Comments
 (0)