-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitpod.yml
More file actions
28 lines (26 loc) · 806 Bytes
/
.gitpod.yml
File metadata and controls
28 lines (26 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
image:
file: .gitpod.dockerfile
vscode:
extensions:
- https://download.zazukoians.org/expressive-rdf-mapper/expressive-rdf-mapper-1.2.0.vsix
- https://Zazuko.gallery.vsassets.io/_apis/public/gallery/publisher/Zazuko/extension/vscode-rdf-sketch/0.0.8/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage
tasks:
- name: mysql-data-load
before: gp await-port 3306
init: |
mysql < example-database.sql
command: |
gp sync-done mysql-data-load
mysql -e 'SHOW TABLES FROM exampledatabase'
- name: convert
init: make install_ontop
command: |
gp sync-await mysql-data-load
make convert
gp sync-done convert
- name: pipeline
before: cd pipeline
init: npm ci
command: |
gp sync-await convert
npm run pipeline-file