mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
Reuses the module system dependencies present there. run: make --dry-run work even when there is no out directory yet docker: make the wrapping more intuitive
12 lines
334 B
YAML
12 lines
334 B
YAML
language: cpp
|
|
|
|
sudo: required
|
|
|
|
script: |
|
|
cd "$TRAVIS_BUILD_DIR"
|
|
# awk: without it, too much stdout (4Mb max)
|
|
# If we ignore stdout: Travis kills job because it spent
|
|
# too long without any new stdout.
|
|
bash -x ./build --download-dependencies --travis |& awk 'NR % 1000 == 0'
|
|
bash -x ./run --kernel-cli 'init=/poweroff.out'
|