better folder stucture & docs
This commit is contained in:
parent
b794d2fc92
commit
cd24decdf7
|
@ -21,6 +21,7 @@ Important note - we now use submodules:
|
||||||
* [Simulator](/simulator) win32 or posix version of firmware allows to explore without any hardware
|
* [Simulator](/simulator) win32 or posix version of firmware allows to explore without any hardware
|
||||||
* [Unit Tests](/unit_tests) Unit tests of firmware pieces
|
* [Unit Tests](/unit_tests) Unit tests of firmware pieces
|
||||||
* [Misc tools](/java_tools) Misc development utilities
|
* [Misc tools](/java_tools) Misc development utilities
|
||||||
|
* [misc/Jenkins](/misc/jenkins) Jenkins Continues Integration scripts
|
||||||
|
|
||||||
# External Links
|
# External Links
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,17 @@
|
||||||
echo I am unit_tests.bat
|
echo I am unit_tests.bat
|
||||||
|
|
||||||
set FTP_SERVER=home451478433.1and1-data.host
|
set FTP_SERVER=home451478433.1and1-data.host
|
||||||
|
rem 'RUSEFI_BUILD_FTP_PASS' environment variable
|
||||||
|
|
||||||
|
echo We should be in root folder
|
||||||
|
pwd
|
||||||
|
|
||||||
|
rem Prior to running unit tests we build real hardware firmware
|
||||||
|
|
||||||
cd firmware
|
cd firmware
|
||||||
|
|
||||||
git submodule update --init
|
git submodule update --init
|
||||||
|
|
||||||
|
|
||||||
rm -fR .dep
|
rm -fR .dep
|
||||||
rm -fR build
|
rm -fR build
|
||||||
call update_version.bat
|
call update_version.bat
|
||||||
|
@ -19,10 +24,9 @@ cd ..
|
||||||
echo We are in root folder
|
echo We are in root folder
|
||||||
pwd
|
pwd
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
cd unit_tests
|
cd unit_tests
|
||||||
|
|
||||||
|
rem Only here we are building unit_tests
|
||||||
call compile.bat
|
call compile.bat
|
||||||
pwd
|
pwd
|
||||||
ls -l build
|
ls -l build
|
Loading…
Reference in New Issue