summaryrefslogtreecommitdiffstats
path: root/acceptance_test
blob: ff9a6262f3d90f30170fe03e1cd67e901ebc50fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

if ! (docker --version); then
  printf 'Docker is required to run the starship acceptance tests.\n'
  printf 'Please download and install Docker in order to run these tests locally.\n'
  exit 1
fi

printf 'Building test docker image:\n'
docker build -f tests/Dockerfile \
  --tag starshipcommand/starship-test \
  --cache-from starshipcommand/starship-test \
  .

printf 'Running test suite:\n'
docker run --rm -v $(pwd):/src/starship --security-opt="label=disable" starshipcommand/starship-test