Empire/.circleci/config.yml

19 lines
446 B
YAML
Raw Normal View History

2017-12-14 04:06:02 +00:00
version: 2
jobs:
build:
docker:
2017-12-14 04:50:36 +00:00
- image: circleci/python:2.7.13
2017-12-14 04:55:36 +00:00
environment:
- STAGING_KEY: "RANDOM"
2017-12-14 04:06:02 +00:00
steps:
- checkout
2017-12-14 05:01:54 +00:00
- run:
name: update apt
command: 'sudo apt-get update'
2017-12-14 04:38:43 +00:00
- run:
name: Run install.sh
2017-12-14 06:03:34 +00:00
command: 'cd setup/ && sudo -E -H ./install.sh'
2017-12-14 05:01:54 +00:00
- run:
name: Start Empire
2017-12-14 06:03:34 +00:00
command: 'sudo ./empire --headless &'