-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into pr-dps310_barometer
- Loading branch information
Showing
707 changed files
with
13,627 additions
and
7,268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/env groovy | ||
|
||
pipeline { | ||
agent none | ||
stages { | ||
stage('Build and Verify') { | ||
|
||
agent { | ||
label 'navio2' | ||
} | ||
steps { | ||
sh 'export' | ||
sh 'make distclean' | ||
sh 'ccache -z' | ||
sh 'git fetch --tags' | ||
sh 'CCACHE_BASEDIR=${WORKSPACE} make emlid_navio2_native' | ||
sh 'ccache -s' | ||
// sanity check | ||
sh 'cd build/emlid_navio2_native/ && ./bin/px4 -s ../../posix-configs/rpi/px4_test.config' | ||
} | ||
post { | ||
always { | ||
sh 'make distclean' | ||
} | ||
} | ||
options { | ||
timeout(time: 30, unit: 'MINUTES') | ||
} | ||
|
||
} | ||
|
||
} // stages | ||
environment { | ||
CCACHE_DIR = '/tmp/ccache' | ||
CI = true | ||
} | ||
options { | ||
buildDiscarder(logRotator(numToKeepStr: '20', artifactDaysToKeepStr: '30')) | ||
timeout(time: 60, unit: 'MINUTES') | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/usr/bin/env groovy | ||
|
||
pipeline { | ||
agent none | ||
stages { | ||
stage('Build and Verify') { | ||
|
||
agent { | ||
label 'snapdragon' | ||
} | ||
steps { | ||
sh 'export' | ||
sh 'make distclean' | ||
sh 'ccache -z' | ||
sh 'git fetch --tags' | ||
sh 'CCACHE_BASEDIR=${WORKSPACE} make eagle_default' | ||
sh 'ccache -s' | ||
// sanity check | ||
sh 'adb devices' | ||
sh 'make eagle_default sanity || true' | ||
} | ||
post { | ||
always { | ||
sh 'cat boards/atlflight/eagle/scripts/px4.log' | ||
sh 'cat boards/atlflight/eagle/scripts/minidm.log' | ||
sh 'make distclean' | ||
} | ||
} | ||
options { | ||
timeout(time: 30, unit: 'MINUTES') | ||
} | ||
|
||
} | ||
|
||
} // stages | ||
environment { | ||
CCACHE_DIR = '/tmp/ccache' | ||
CI = true | ||
ARM_CROSS_GCC_ROOT="/home/jenkins/Qualcomm/ARM_Tools/gcc-4.9-2014.11" | ||
HEXAGON_ARM_SYSROOT="/home/jenkins/Qualcomm/qrlinux_sysroot" | ||
HEXAGON_SDK_ROOT="/home/jenkins/Qualcomm/Hexagon_SDK/3.0" | ||
HEXAGON_TOOLS_ROOT="/home/jenkins/Qualcomm/HEXAGON_Tools/7.2.12/Tools" | ||
} | ||
options { | ||
buildDiscarder(logRotator(numToKeepStr: '20', artifactDaysToKeepStr: '30')) | ||
timeout(time: 60, unit: 'MINUTES') | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
* text=auto eol=lf | ||
*.{cmd,[cC][mM][dD]} text eol=crlf | ||
*.{bat,[bB][aA][tT]} text eol=crlf | ||
|
||
*.bin binary | ||
*.pdf binary | ||
*.png binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ Testing/ | |
Packages/* | ||
build/* | ||
build_*/ | ||
core | ||
cscope.out | ||
cscope.in.out | ||
cscope.po.out | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.