23
23
uses : actions/setup-go@v3
24
24
with :
25
25
go-version : 1.19
26
-
26
+
27
27
- name : Fetching Go Cache Paths
28
28
id : go-cache-paths
29
29
run : |
@@ -46,16 +46,11 @@ jobs:
46
46
path : ${{ steps.go-cache-paths.outputs.go-mod }}
47
47
key : ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
48
48
49
- - name : Run CLI Unit Tests
50
- run : |
51
- go clean -testcache
52
- go test -timeout 30s ./...
53
-
54
49
- name : Run GoReleaser
55
50
uses : goreleaser/goreleaser-action@v3
56
51
with :
57
52
version : latest
58
- args : release --rm-dist --skip-publish
53
+ args : release --rm-dist --snapshot --parallelism 2 --config=.acceptance.goreleaser.yml
59
54
env :
60
55
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
61
56
@@ -83,11 +78,30 @@ jobs:
83
78
if-no-files-found : error
84
79
85
80
acceptance_test :
86
- name : Acceptance tests
81
+ name : Test
87
82
needs : goreleaser
88
83
strategy :
84
+ fail-fast : false
89
85
matrix :
90
86
platform : [macos-latest, ubuntu-latest]
87
+ test_block :
88
+ - " migration"
89
+ - " service_and_plugin"
90
+ - " search_path"
91
+ - " chaos_and_query"
92
+ - " dynamic_schema"
93
+ - " cache"
94
+ - " mod_install"
95
+ - " mod"
96
+ - " check"
97
+ - " performance"
98
+ - " exit_codes"
99
+ - " force_stop"
100
+ exclude :
101
+ - platform : macos-latest
102
+ test_block : migration
103
+ - platform : macos-latest
104
+ test_block : force_stop
91
105
runs-on : ${{ matrix.platform }}
92
106
steps :
93
107
- name : Checkout
@@ -131,9 +145,11 @@ jobs:
131
145
echo "PATH=$PATH:$HOME/build:$GTIHUB_WORKSPACE/tests/acceptance/lib/bats/libexec" >> $GITHUB_ENV
132
146
133
147
- name : Install DB
148
+ id : install-db
134
149
continue-on-error : false
135
150
run : |
136
151
steampipe service start
152
+ steampipe plugin install chaos
137
153
steampipe service stop
138
154
139
155
- name : Run Test Suite
@@ -142,19 +158,21 @@ jobs:
142
158
continue-on-error : true
143
159
run : |
144
160
chmod +x $GITHUB_WORKSPACE/tests/acceptance/run.sh
145
- $GITHUB_WORKSPACE/tests/acceptance/run.sh
161
+ $GITHUB_WORKSPACE/tests/acceptance/run.sh ${{ matrix.test_block }}.bats
146
162
steampipe service stop --force
147
-
163
+
148
164
- name : Save Test Suite Logs
149
165
uses : actions/upload-artifact@v3
150
166
with :
151
167
name : test-logs
152
168
path : ~/.steampipe/logs
153
169
if-no-files-found : error
154
-
170
+
155
171
# This job checks whether the test suite has passed or not.
156
- # Since the exit_code is set only when the bats test suite pass, so we have added the if-conditional block
172
+ # Since the exit_code is set only when the bats test suite pass,
173
+ # we have added the if-conditional block
157
174
- name : Check Test Passed/Failed
175
+ if : ${{ success() }}
158
176
continue-on-error : false
159
177
run : |
160
178
if [ ${{ steps.run-test-suite.outputs.exit_code }} -eq 0 ]; then
@@ -171,6 +189,7 @@ jobs:
171
189
# https://docs.github.com/en/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts#downloading-and-deleting-artifacts-after-a-workflow-run-is-complete
172
190
name : Clean Up Artifacts
173
191
needs : acceptance_test
192
+ if : ${{ needs.acceptance_test.result == 'success' }}
174
193
runs-on : ubuntu-latest
175
194
steps :
176
195
- name : Clean up Linux Build
@@ -185,12 +204,6 @@ jobs:
185
204
name : build-artifact-darwin
186
205
failOnError : true
187
206
188
- - name : Clean up Test Suite
189
- uses : geekyeggo/delete-artifact@v1
190
- with :
191
- name : test-artifact
192
- failOnError : true
193
-
194
207
- name : Clean up Test Suite Logs
195
208
uses : geekyeggo/delete-artifact@v1
196
209
with :
0 commit comments