Skip to content

Commit

Permalink
Prepare initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexDenisov committed Feb 27, 2020
1 parent c1c3748 commit a9aa122
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.1.0] - 27 Feb 2020

- Initial release

## [0.0.0] - 20 Feb 2020

- Walking skeleton
6 changes: 6 additions & 0 deletions Queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,9 @@
```groovy
g.V().has('argument', 'name', 'x').out('function').valueMap('name')
```
- List struct type members:
```groovy
g.V().has('type', 'typeID', 'struct').outE('elementType').project('order', 'type').by('order').by(__.inV().values('typeID'))
```
8 changes: 1 addition & 7 deletions ci/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,7 @@ Vagrant.configure(2) do |config|

configure_vm("ubuntu18", cfg)

cfg.vm.provision "shell", inline: "apt-get install -y python"
config.vm.provision "shell", inline: <<-SHELL
mkdir -p ~/.ssh
chmod 700 ~/.ssh
ssh-keyscan -t rsa -H github.com >> ~/.ssh/known_hosts
SHELL

cfg.vm.provision "shell", inline: "apt-get install -y python3"
cfg.vm.provision "ansible" do |ansible|
ansible.verbose = "v"
ansible.playbook = "ubuntu-playbook.yaml"
Expand Down
2 changes: 1 addition & 1 deletion ci/helpers/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@

- name: Copy package
copy:
src: "{{ release_build_dir }}/{{ package_file_name['content'] | b64decode }}.zip"
src: "{{ release_build_dir }}/{{ package_file_name['content'] | b64decode }}.{{ package_extension }}"
dest: /tmp/packages/
remote_src: true
1 change: 1 addition & 0 deletions ci/macos-playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

vars:
platform: macos
package_extension: zip

llvm2graphml_cxx_flags: ""

Expand Down
1 change: 1 addition & 0 deletions ci/ubuntu-playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

vars:
platform: ubuntu
package_extension: deb

llvm2graphml_cxx_flags: -D_GLIBCXX_USE_CXX11_ABI=1

Expand Down

0 comments on commit a9aa122

Please sign in to comment.