Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
Baitboat
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenSource
Baitboat
Commits
fbef07c0
Commit
fbef07c0
authored
10 years ago
by
Andrew Tridgell
Committed by
Randy Mackay
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Travis: added build script from master
parent
7b178efd
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Tools/scripts/build_all_travis.sh
+38
-0
38 additions, 0 deletions
Tools/scripts/build_all_travis.sh
with
38 additions
and
0 deletions
Tools/scripts/build_all_travis.sh
0 → 100755
+
38
−
0
View file @
fbef07c0
#!/bin/bash
# useful script to test all the different build types that we support.
# This helps when doing large merges
# Andrew Tridgell, November 2011
.
config.mk
set
-e
set
-x
echo
"Testing ArduPlane build"
pushd
ArduPlane
make configure
for
b
in
all apm2 sitl linux
;
do
pwd
make clean
make
$b
-j4
done
popd
for
d
in
ArduCopter APMrover2 ArduPlane AntennaTracker
;
do
pushd
$d
make clean
make sitl
-j4
make clean
make linux
-j4
make clean
make px4-cleandep
make px4-v2
popd
done
pushd
Tools/Replay
make clean
make linux
-j4
popd
exit
0
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment