We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f21590 commit 0e729cdCopy full SHA for 0e729cd
travis/common.sh
@@ -86,8 +86,6 @@ function get_sketches_json_matrix()
86
done
87
}
88
89
-
90
91
function get_core()
92
{
93
echo Setup core for $1
@@ -115,3 +113,19 @@ function get_core()
115
113
fi
116
114
117
+
+function clone_library() {
118
+ local url=$1
119
+ echo clone $(basename $url)
120
+ mkdir -p $HOME/Arduino/libraries
121
+ cd $HOME/Arduino/libraries
122
+ git clone --depth 1 $url
123
+ rm -rf */.git
124
+ rm -rf */.github
125
+ rm -rf */examples
126
+}
127
128
+function hash_library_names() {
129
130
+ ls | sha1sum -z | cut -c1-5
131
0 commit comments