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 2df3b8f commit 0a7b334Copy full SHA for 0a7b334
travis/build-pio.sh
@@ -1,11 +1,18 @@
1
#!/bin/bash
2
3
echo -e "travis_fold:start:install_pio"
4
+
5
pip install -U platformio
6
+if [ $? -ne 0 ]; then exit 1; fi
7
8
+python -m platformio lib --storage-dir $PWD
9
10
11
echo -e "travis_fold:end:install_pio"
12
13
echo -e "travis_fold:start:test_pio"
14
for EXAMPLE in $PWD/examples/*/*.ino; do
- platformio ci $EXAMPLE -l '.' -b esp12e
15
+ python -m platformio ci $EXAMPLE -l '.' -b esp12e
16
+ if [ $? -ne 0 ]; then exit 1; fi
17
done
18
echo -e "travis_fold:end:test_pio"
0 commit comments