From 9ef80439b0c9195449b849e707f361793ba73920 Mon Sep 17 00:00:00 2001 From: aokabi Date: Sun, 5 Nov 2023 12:55:00 +0900 Subject: [PATCH 1/2] fix path --- cmd/octillery/main.go | 2 +- transposer/inspector.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/octillery/main.go b/cmd/octillery/main.go index 2a81ce5..05e6863 100644 --- a/cmd/octillery/main.go +++ b/cmd/octillery/main.go @@ -521,7 +521,7 @@ func (cmd *ConsoleCommand) Execute(args []string) error { } func (cmd *InstallCommand) lookupOctillery() ([]string, error) { - libraryPath := filepath.Join("go.knocknote.io", "octillery") + libraryPath := filepath.Join("github.com/aokabi", "octillery") installPaths := []string{} cwd, err := os.Getwd() if err != nil { diff --git a/transposer/inspector.go b/transposer/inspector.go index 7975be0..a9dc9da 100644 --- a/transposer/inspector.go +++ b/transposer/inspector.go @@ -39,7 +39,7 @@ var ( func importDatabaseSQLPackagePatterns() []*regexp.Regexp { patterns := []*regexp.Regexp{} - basePath := filepath.Join("go.knocknote.io", "octillery.*") + basePath := filepath.Join("github.com/aokabi", "octillery.*") for _, path := range []string{ "algorithm", "connection", From ec3b5a58e9011a6aa5c2a00de5c5ac13431e0042 Mon Sep 17 00:00:00 2001 From: aokabi Date: Sun, 5 Nov 2023 12:57:00 +0900 Subject: [PATCH 2/2] delete ci --- .circleci/config.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index aa1618a..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,32 +0,0 @@ -version: 2 -jobs: - test: - working_directory: /go/src/github.com/aokabi/octillery - docker: - - image: golang:1.13 - environment: - GO111MODULE: "on" - steps: - - checkout - - run: - name: Download modules - command: | - go mod download - - run: - name: Install octillery CLI - command: | - go get ./cmd/octillery - - run: - name: Install SQLite plugin - command: | - octillery install --sqlite - - run: - name: Run unit tests and measure coverage - command: | - go test -v -coverprofile=coverage.out ./... - bash <(curl -s https://codecov.io/bash) -P ${CIRCLE_PULL_REQUEST##*/} -workflows: - version: 2 - test: - jobs: - - test