1
0
mirror of https://github.com/rancher/os.git synced 2025-07-30 22:24:33 +00:00
os/scripts/ci
Ivan Mikushin 25fa1b769d add --qind to scripts/run and scripts/ssh
also add `--fresh` to `scripts/run` to run with a clean state HDD,
make `--qemu` the default in `scripts/run` and `scripts/ssh`
2015-09-23 10:20:28 +05:00

13 lines
326 B
Bash
Executable File

#!/bin/bash
set -ex
cd $(dirname $0)/..
if [ -x "$(which wrapdocker)" ] && ! docker info >/dev/null 2>&1; then
wrapdocker
fi
docker build -t ros-build-base -f Dockerfile.build-base .
docker build -t ros-build -f Dockerfile.build .
./scripts/docker-run.sh --name ros-ci make -f Makefile.docker minimal integration-tests