Skip to content

Commit a9aa122

Browse files
committed
Prepare initial release
1 parent c1c3748 commit a9aa122

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.1.0] - 27 Feb 2020
2+
3+
- Initial release
4+
15
## [0.0.0] - 20 Feb 2020
26

37
- Walking skeleton

Queries.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,9 @@
2929
```groovy
3030
g.V().has('argument', 'name', 'x').out('function').valueMap('name')
3131
```
32+
33+
- List struct type members:
34+
35+
```groovy
36+
g.V().has('type', 'typeID', 'struct').outE('elementType').project('order', 'type').by('order').by(__.inV().values('typeID'))
37+
```

ci/Vagrantfile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,7 @@ Vagrant.configure(2) do |config|
1717

1818
configure_vm("ubuntu18", cfg)
1919

20-
cfg.vm.provision "shell", inline: "apt-get install -y python"
21-
config.vm.provision "shell", inline: <<-SHELL
22-
mkdir -p ~/.ssh
23-
chmod 700 ~/.ssh
24-
ssh-keyscan -t rsa -H github.com >> ~/.ssh/known_hosts
25-
SHELL
26-
20+
cfg.vm.provision "shell", inline: "apt-get install -y python3"
2721
cfg.vm.provision "ansible" do |ansible|
2822
ansible.verbose = "v"
2923
ansible.playbook = "ubuntu-playbook.yaml"

ci/helpers/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616

1717
- name: Copy package
1818
copy:
19-
src: "{{ release_build_dir }}/{{ package_file_name['content'] | b64decode }}.zip"
19+
src: "{{ release_build_dir }}/{{ package_file_name['content'] | b64decode }}.{{ package_extension }}"
2020
dest: /tmp/packages/
2121
remote_src: true

ci/macos-playbook.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
vars:
88
platform: macos
9+
package_extension: zip
910

1011
llvm2graphml_cxx_flags: ""
1112

ci/ubuntu-playbook.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
vars:
55
platform: ubuntu
6+
package_extension: deb
67

78
llvm2graphml_cxx_flags: -D_GLIBCXX_USE_CXX11_ABI=1
89

0 commit comments

Comments
 (0)