15 lines
334 B
YAML
15 lines
334 B
YAML
sudo: required
|
|
|
|
language: c
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- docker pull xiulipan/sof
|
|
- echo -e '#!/bin/bash \n./autogen.sh && ./configure && make && make tests 1>/dev/null' > quickbuild.sh
|
|
- chmod 755 quickbuild.sh
|
|
|
|
script:
|
|
- docker run -it -v `pwd`:/home/sof/work/sof.git --user `id -u` xiulipan/sof ./quickbuild.sh
|