File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,17 @@ jobs:
116
116
push-cache : true
117
117
cache-only : true
118
118
119
+ # Call our deployment workflow
120
+ # deploy:
121
+ # name: Deploy to Prod
122
+ # needs: [build]
123
+ # uses: ./.github/workflows/deploy.yml
124
+ # with:
125
+ # deploy-envs: '["prod"]'
126
+ # image-tag: ${{ github.event.release.tag_name }}
127
+ # prod: true
128
+ # secrets: inherit
129
+
119
130
# Trigger private repo to deploy the docker desktop extension
120
131
trigger_dd_extension_release :
121
132
name : Deploy Docker Desktop Extension
@@ -137,11 +148,24 @@ jobs:
137
148
workflow_file_name : bump-mindsdb-version.yml
138
149
ref : main
139
150
client_payload : ' {"image-tag": "${{ env.CI_REF_NAME }}"}'
151
+
152
+ # Run integration tests
153
+ # TODO: Run these against the deployed environment
154
+ # run_tests:
155
+ # name: Run Integration Tests
156
+ # needs: [deploy]
157
+ # concurrency:
158
+ # group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}-tests
159
+ # cancel-in-progress: true
160
+ # uses: ./.github/workflows/test_on_deploy.yml
161
+ # with:
162
+ # deploy-env: prod
163
+ # secrets: inherit
140
164
141
165
slack_message :
142
166
if : always()
143
167
name : Notify Slack
144
- needs : [run_tests]
168
+ # needs: [run_tests]
145
169
runs-on : mdb-dev
146
170
steps :
147
171
- name : Notify of failing tests
You can’t perform that action at this time.
0 commit comments