File tree 3 files changed +40
-4
lines changed
3 files changed +40
-4
lines changed Original file line number Diff line number Diff line change
1
+ bin /
2
+ dist /
Original file line number Diff line number Diff line change
1
+ sudo : false
2
+
3
+ language : java
4
+
5
+ os :
6
+ - linux
7
+
8
+ addons :
9
+ apt :
10
+ packages :
11
+ - ant
12
+
13
+ jdk :
14
+ - oraclejdk8
15
+
16
+ script :
17
+ - export SRC=$PWD
18
+ - cd $HOME
19
+ - export TAG=1.6.6
20
+ - wget https://github.com/arduino/Arduino/archive/$TAG.zip
21
+ - unzip $TAG.zip
22
+ - rm $TAG.zip
23
+ - export arduino_dir=Arduino-$TAG
24
+ - pushd $arduino_dir/build
25
+ - echo "" | ant build
26
+ - pushd shared/tools
27
+ - mkdir -p ESP8266FS
28
+ - rsync -a $SRC/ ESP8266FS/
29
+ - pushd ESP8266FS
30
+ - ./make.sh
31
+ - popd && popd && popd
Original file line number Diff line number Diff line change 1
- #! /bin/sh
1
+ #! /usr/ bin/env bash
2
2
3
3
if [[ -z " $INSTALLDIR " ]]; then
4
4
INSTALLDIR=" $HOME /Documents/Arduino"
5
5
fi
6
6
echo " INSTALLDIR: $INSTALLDIR "
7
7
8
- pde_path=` find ../../.. -name pde.jar`
9
- core_path=` find ../../.. -name arduino-core.jar`
10
- lib_path=` find ../../.. -name commons-codec-1.7.jar`
8
+ pde_path=` find ../../../ -name pde.jar`
9
+ core_path=` find ../../../ -name arduino-core.jar`
10
+ lib_path=` find ../../../ -name commons-codec-1.7.jar`
11
11
if [[ -z " $core_path " || -z " $pde_path " ]]; then
12
12
echo " Some java libraries have not been built yet (did you run ant build?)"
13
13
return 1
14
14
fi
15
+ echo " pde_path: $pde_path "
16
+ echo " core_path: $core_path "
17
+ echo " lib_path: $lib_path "
15
18
16
19
set -e
17
20
You can’t perform that action at this time.
0 commit comments