Skip to content

Commit

Permalink
Add release for v3.2.0 (#213)
Browse files Browse the repository at this point in the history
* Update github workflow (#212)

* Update docker compose yaml

* Update nebula go
  • Loading branch information
Aiee authored Jul 19, 2022
1 parent fa4b9b9 commit e9ea8b4
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: pull_request

on: [pull_request]
on:
push:
branches: [ master, 'release-**']
pull_request:
branches: [ master, 'release-**']
schedule:
- cron: "0 6 * * *"

jobs:
test:
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.4'
services:
metad:
image: vesoft/nebula-metad:nightly
image: vesoft/nebula-metad:v3.2.0
environment:
USER: root
TZ: UTC
Expand All @@ -28,7 +28,7 @@ services:
- SYS_PTRACE

graphd1:
image: vesoft/nebula-graphd:nightly
image: vesoft/nebula-graphd:v3.2.0
environment:
USER: root
TZ: UTC
Expand Down Expand Up @@ -59,7 +59,7 @@ services:
- SYS_PTRACE

graphd2:
image: vesoft/nebula-graphd:nightly
image: vesoft/nebula-graphd:v3.2.0
environment:
USER: root
TZ: UTC
Expand Down Expand Up @@ -106,7 +106,7 @@ services:
nebula-net:

storaged:
image: vesoft/nebula-storaged:nightly
image: vesoft/nebula-storaged:v3.2.0
environment:
USER: root
TZ: UTC
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/vesoft-inc/nebula-importer
require (
github.com/kr/text v0.2.0 // indirect
github.com/stretchr/testify v1.7.0
github.com/vesoft-inc/nebula-go/v3 v3.0.0-20220425030225-cdb52399b40a
github.com/vesoft-inc/nebula-go/v3 v3.2.0
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.2.4
)
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/vesoft-inc/nebula-go/v3 v3.0.0-20220425030225-cdb52399b40a h1:/8l9RT6gU0cUS1Cgzqv3A9dKto19VQBjVk1BqAAqqvM=
github.com/vesoft-inc/nebula-go/v3 v3.0.0-20220425030225-cdb52399b40a/go.mod h1:+sXv05jYQBARdTbTcIEsWVXCnF/6ttOlDK35xQ6m54s=
github.com/vesoft-inc/nebula-go/v3 v3.2.0 h1:f0IW6W5f91O6FyXAi+kFq1D2bNFXtPtkb/H9WywFGmM=
github.com/vesoft-inc/nebula-go/v3 v3.2.0/go.mod h1:+sXv05jYQBARdTbTcIEsWVXCnF/6ttOlDK35xQ6m54s=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
Expand Down
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func Parse(filename string, runnerLogger *logger.RunnerLogger) (*YAMLConfig, err
}
path := filepath.Dir(abs)

if workingDir := conf.WorkingDirectory; workingDir != nil && len(*workingDir) > 0 {
if workingDir := conf.WorkingDirectory; workingDir != nil && len(*workingDir) > 0 {
if !filepath.IsAbs(*workingDir) {
path = filepath.Join(path, *workingDir)
} else {
Expand Down

0 comments on commit e9ea8b4

Please sign in to comment.