Use qmk docker image for travis CI builds
This commit is contained in:
parent
6693d16362
commit
ba6b3fc1b5
4 changed files with 22 additions and 21 deletions
|
@ -1,5 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
# if docker is installed - call make within the qmk docker image
|
||||
if command -v docker >/dev/null; then
|
||||
function make() {
|
||||
docker run --rm -e MAKEFLAGS="$MAKEFLAGS" -w /qmk_firmware/ -v "$PWD":/qmk_firmware qmkfm/qmk_firmware make "$@"
|
||||
}
|
||||
fi
|
||||
|
||||
# test force push
|
||||
#TRAVIS_COMMIT_RANGE="c287f1bfc5c8...81f62atc4c1d"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue