mirror of
https://github.com/rancher/os.git
synced 2025-07-30 22:24:33 +00:00
also add `--fresh` to `scripts/run` to run with a clean state HDD, make `--qemu` the default in `scripts/run` and `scripts/ssh`
13 lines
326 B
Bash
Executable File
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
|