Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ataffanel committed Sep 28, 2015
2 parents 312a84c + a8490b5 commit 0c0813a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ services:
before_install:
- docker pull bitcraze/builder
script:
- docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/build.sh
- docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/build
15 changes: 13 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
{
"artifactType": "firmware",
"buildScript": "tools/build/build.sh"
"version": "1.0",
"environmentReq": [
"arm-none-eabi"
],
"artifacts": {
"file": [
{
"source": "*.bin",
"insertTag": true,
"destination": "currDir"
}
]
}
}
2 changes: 1 addition & 1 deletion tools/build/build.sh → tools/build/build
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ set -e

scriptDir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )

${scriptDir}/download_deps.sh
${scriptDir}/download_deps
make --directory=${scriptDir}/../.. ${@}
File renamed without changes.

0 comments on commit 0c0813a

Please sign in to comment.