File tree 4 files changed +15
-15
lines changed
4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 59
59
- name : Build
60
60
run : |
61
61
cd import-export-cli
62
- # go vet ./...
63
- ./build.sh -t apictl.go -v 4.4.0
62
+ go vet ./...
63
+ ./build.sh -t apictl.go -v 4.4.1
64
64
65
65
- name : Start APIM
66
66
run : |
71
71
- name : Test
72
72
run : |
73
73
cd import-export-cli/integration
74
- go test -p 1 -timeout 0 -archive apictl-4.4.0 -linux-x64.tar.gz -race -coverprofile=coverage.txt -covermode=atomic ./pkg/...
74
+ go test -p 1 -timeout 0 -archive apictl-4.4.1 -linux-x64.tar.gz -race -coverprofile=coverage.txt -covermode=atomic ./pkg/...
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Command Line tool for importing and exporting APIs/Applications/API Products in
17
17
- ### Building
18
18
` cd ` into ` product-apim-tooling/import-export-cli `
19
19
20
- Execute ` ./build.sh -t apictl.go -v 4.4.0 -f ` to build for all platforms.
20
+ Execute ` ./build.sh -t apictl.go -v 4.4.1 -f ` to build for all platforms.
21
21
22
22
Created packages will be available at ` build/target ` directory
23
23
@@ -69,11 +69,11 @@ Command Line tool for importing and exporting APIs/Applications/API Products in
69
69
70
70
Usage: ` docker build --build-arg version=<version> -t apictl:<version> . `
71
71
72
- Example: ` docker build --build-arg version=4.4.0 .1 -t apictl:4.4.0 .1 . `
72
+ Example: ` docker build --build-arg version=4.4.1 .1 -t apictl:4.4.1 .1 . `
73
73
74
74
- ### Using the Docker Image
75
75
76
- `docker run -it -v $(pwd):/git -v ~/.wso2apictl:/root/.wso2apictl -v ~/.wso2apictl.local:/root/.wso2apictl.local apictl:4.4.0 .1 <apictl command>`
76
+ `docker run -it -v $(pwd):/git -v ~/.wso2apictl:/root/.wso2apictl -v ~/.wso2apictl.local:/root/.wso2apictl.local apictl:4.4.1 .1 <apictl command>`
77
77
78
78
***
79
79
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ devops-rest-api-version: v0
52
52
The version of the apictl that is being integration tested.
53
53
54
54
```
55
- apictl-version: 4.4.0
55
+ apictl-version: 4.4.1
56
56
```
57
57
58
58
@@ -95,7 +95,7 @@ apictl-version: 4.4.0
95
95
` ` `
96
96
go test -p 1 -timeout 0 -archive < apictl archive name>
97
97
98
- example: go test -p 1 -timeout 0 -archive apictl-4.4.0 -linux-x64.tar.gz
98
+ example: go test -p 1 -timeout 0 -archive apictl-4.4.1 -linux-x64.tar.gz
99
99
100
100
```
101
101
@@ -104,23 +104,23 @@ example: go test -p 1 -timeout 0 -archive apictl-4.4.0-linux-x64.tar.gz
104
104
```
105
105
go test -p 1 -timeout 0 -archive <apictl archive name> -run <Test function name or partial name regex>
106
106
107
- example: go test -p 1 -timeout 0 -archive apictl-4.4.0 -linux-x64.tar.gz -run TestVersion
107
+ example: go test -p 1 -timeout 0 -archive apictl-4.4.1 -linux-x64.tar.gz -run TestVersion
108
108
```
109
109
110
110
- Print verbose output
111
111
112
112
```
113
113
go test -p 1 -timeout 0 -archive <apictl archive name> -v
114
114
115
- example: go test -p 1 -timeout 0 -archive apictl-4.4.0 -linux-x64.tar.gz -v
115
+ example: go test -p 1 -timeout 0 -archive apictl-4.4.1 -linux-x64.tar.gz -v
116
116
```
117
117
118
118
- Print http transport request/responses
119
119
120
120
```
121
121
go test -p 1 -timeout 0 -archive <apictl archive name> -logtransport
122
122
123
- example: go test -p 1 -timeout 0 -archive apictl-4.4.0 -linux-x64.tar.gz -logtransport
123
+ example: go test -p 1 -timeout 0 -archive apictl-4.4.1 -linux-x64.tar.gz -logtransport
124
124
```
125
125
126
126
---
Original file line number Diff line number Diff line change 62
62
```
63
63
go test -archive <apictl archive name>
64
64
65
- example: go test -archive apictl-4.2 .1-linux-x64.tar.gz
65
+ example: go test -archive apictl-4.4 .1-linux-x64.tar.gz
66
66
67
67
```
68
68
@@ -71,21 +71,21 @@ example: go test -archive apictl-4.2.1-linux-x64.tar.gz
71
71
```
72
72
go test -archive <apictl archive name> -test.run <Test function name or partial name regex>
73
73
74
- example: go test -archive apictl-4.2 .1-linux-x64.tar.gz -test.run TestGetConnectors
74
+ example: go test -archive apictl-4.4 .1-linux-x64.tar.gz -test.run TestGetConnectors
75
75
```
76
76
77
77
- Print verbose output
78
78
79
79
```
80
80
go test -archive <apictl archive name> -test.v
81
81
82
- example: go test -archive apictl-4.2 .1-linux-x64.tar.gz -test.v
82
+ example: go test -archive apictl-4.4 .1-linux-x64.tar.gz -test.v
83
83
```
84
84
85
85
- Print http transport request/responses
86
86
87
87
```
88
88
go test -archive <apictl archive name> -logtransport
89
89
90
- example: go test -archive apictl-4.2 .1-linux-x64.tar.gz -logtransport
90
+ example: go test -archive apictl-4.4 .1-linux-x64.tar.gz -logtransport
91
91
```
You can’t perform that action at this time.
0 commit comments