File tree 2 files changed +16
-18
lines changed
2 files changed +16
-18
lines changed Original file line number Diff line number Diff line change 6
6
if : contains(github.event.pull_request.labels.*.name, 'dependencies') || contains(github.event.pull_request.labels.*.name, 'safe-to-test')
7
7
steps :
8
8
# - template: cancel-previous
9
- - template : checkout-fork
9
+ # - template: checkout-fork
10
10
# - template: setup-and-install-python
11
11
# - template: quay-login
12
12
# - template: set-up-qemu
13
- # - template: build-and-push-development-images
13
+ - template : build-and-push-development-images
14
14
- template : tests
15
15
steps :
16
16
# - template: cancel-previous
17
- - template : checkout-fork
17
+ # - template: checkout-fork
18
18
# - template: set-run-status
19
19
# - template: setup-and-install-python
20
20
# - template: setup-kind-cluster
21
21
# if: steps.last_run_status.outputs.last_run_status != 'success'
22
22
# - template: run-test-matrix
23
- # - template: save-run-status
23
+ - template : save-run-status
24
24
# - template: dump-and-upload-diagnostics
25
25
26
26
events :
Original file line number Diff line number Diff line change @@ -41,13 +41,13 @@ jobs:
41
41
if : contains(github.event.pull_request.labels.*.name, 'dependencies') || contains(github.event.pull_request.labels.*.name,
42
42
' safe-to-test' )
43
43
steps :
44
- # template: .action_templates/steps/checkout-fork .yaml
45
- - name : Checkout Code
46
- uses : actions/checkout@v4
47
- with :
48
- ref : ${{github.event.pull_request.head.sha}}
49
- repository : ${{github.event.pull_request.head.repo.full_name}}
50
- submodules : true
44
+ # template: .action_templates/steps/build-and-push-development-images .yaml
45
+ - name : Build and Push Images
46
+ run : |
47
+ python pipeline.py --image-name ${{ matrix.pipeline-argument }} --tag ${{ github.run_id }}
48
+ env :
49
+ MONGODB_COMMUNITY_CONFIG : ${{ github.workspace }}/scripts/ci/config.json
50
+ version_id : ${{ github.run_id }}
51
51
# template: .action_templates/jobs/tests.yaml
52
52
tests :
53
53
runs-on : ubuntu-latest
@@ -118,10 +118,8 @@ jobs:
118
118
- test-name : replica_set_remove_user
119
119
distro : ubi
120
120
steps :
121
- # template: .action_templates/steps/checkout-fork.yaml
122
- - name : Checkout Code
123
- uses : actions/checkout@v4
124
- with :
125
- ref : ${{github.event.pull_request.head.sha}}
126
- repository : ${{github.event.pull_request.head.repo.full_name}}
127
- submodules : true
121
+ # template: .action_templates/steps/save-run-status.yaml
122
+ - name : Save run status
123
+ if : always()
124
+ run : echo "::set-output name=last_run_status::${{ steps.e2e_test.outcome }}"
125
+ > last_run_status
You can’t perform that action at this time.
0 commit comments