-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitpod.yml
17 lines (17 loc) · 1.01 KB
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
tasks:
- before: >
cp /workspace/binalyzer/.theia/recentworkspace.json /home/gitpod/.theia/recentworkspace.json
- init: >
git clone https://github.com/denisvasilik/binalyzer-core.git /workspace/binalyzer-core &&
git clone https://github.com/denisvasilik/binalyzer-template-provider.git /workspace/binalyzer-template-provider &&
git clone https://github.com/denisvasilik/binalyzer-data-provider.git /workspace/binalyzer-data-provider &&
git clone https://github.com/denisvasilik/binalyzer-cli.git /workspace/binalyzer-cli &&
git clone https://github.com/denisvasilik/binalyzer-rest.git /workspace/binalyzer-rest &&
cd /workspace/binalyzer-template-provider && make generate-xml-parser && pip3 install -e . &&
cd /workspace/binalyzer-data-provider && pip3 install -e . &&
cd /workspace/binalyzer-core && pip3 install -e . &&
cd /workspace/binalyzer-cli && pip3 install -e . &&
cd /workspace/binalyzer && pip3 install -e .
image:
file: .gitpod.Dockerfile
workspaceLocation: "/workspace"