File tree Expand file tree Collapse file tree 2 files changed +21
-21
lines changed Expand file tree Collapse file tree 2 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 55
55
DOCKER_IMAGE : ghcr.io/${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}/plenum-build
56
56
UBUNTU_VERSION : ${{ needs.workflow-setup.outputs.UBUNTU_VERSION }}
57
57
58
- plenum_tests :
59
- name : Test Plenum
60
- needs : [workflow-setup, lint, build-docker-image]
61
- uses : ./.github/workflows/reuseable_test.yaml
62
- with :
63
- GITHUB_REPOSITORY_NAME : ${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}
64
- UBUNTU_VERSION : ${{ needs.workflow-setup.outputs.UBUNTU_VERSION }}
65
-
66
58
build_packages :
67
59
name : Build Packages
68
- needs : [workflow-setup, plenum_tests ]
60
+ needs : [workflow-setup, build-docker-image ]
69
61
uses : hyperledger/indy-shared-gha/.github/workflows/buildpackages.yaml@v1
70
62
with :
71
63
DOCKER_IMAGE : ghcr.io/${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}/plenum-build:${{ needs.workflow-setup.outputs.UBUNTU_VERSION }}
@@ -74,10 +66,18 @@ jobs:
74
66
isRC : ' false'
75
67
moduleName : plenum
76
68
69
+ plenum_tests :
70
+ name : Test Plenum
71
+ needs : [workflow-setup, lint, build_packages]
72
+ uses : ./.github/workflows/reuseable_test.yaml
73
+ with :
74
+ GITHUB_REPOSITORY_NAME : ${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}
75
+ UBUNTU_VERSION : ${{ needs.workflow-setup.outputs.UBUNTU_VERSION }}
76
+
77
77
statusCheck :
78
78
name : statusCheck
79
79
runs-on : ubuntu-latest
80
- needs : [workflow-setup, build_packages ]
80
+ needs : [workflow-setup, plenum_tests ]
81
81
if : ${{ needs.workflow-setup.outputs.testsNeeded == 'false' || success() }}
82
82
steps :
83
83
- run : ' echo "Just a status Check (Always true, when executed) for branch protection rules(blocks merging while test are running and if tests fail)." '
Original file line number Diff line number Diff line change 49
49
DOCKER_IMAGE : ghcr.io/${{ needs.release-infos.outputs.GITHUB_REPOSITORY_NAME }}/plenum-build
50
50
UBUNTU_VERSION : ${{ needs.release-infos.outputs.UBUNTU_VERSION }}
51
51
52
- plenum_tests :
53
- name : Test Plenum
54
- needs : [release-infos, lint, build-docker-image]
55
- if : needs.release-infos.outputs.isVersionBump == 'true'
56
- uses : ./.github/workflows/reuseable_test.yaml
57
- with :
58
- GITHUB_REPOSITORY_NAME : ${{ needs.release-infos.outputs.GITHUB_REPOSITORY_NAME }}
59
- UBUNTU_VERSION : ${{ needs.release-infos.outputs.UBUNTU_VERSION }}
60
-
61
52
build_packages :
62
53
name : Build Packages
63
- needs : [release-infos, plenum_tests ]
54
+ needs : [release-infos, build-docker-image ]
64
55
if : needs.release-infos.outputs.isVersionBump == 'true'
65
56
uses : hyperledger/indy-shared-gha/.github/workflows/buildpackages.yaml@v1
66
57
with :
70
61
isRC : ' ${{ needs.release-infos.outputs.isPreRelease }}'
71
62
moduleName : plenum
72
63
64
+ plenum_tests :
65
+ name : Test Plenum
66
+ needs : [release-infos, lint, build_packages]
67
+ if : needs.release-infos.outputs.isVersionBump == 'true'
68
+ uses : ./.github/workflows/reuseable_test.yaml
69
+ with :
70
+ GITHUB_REPOSITORY_NAME : ${{ needs.release-infos.outputs.GITHUB_REPOSITORY_NAME }}
71
+ UBUNTU_VERSION : ${{ needs.release-infos.outputs.UBUNTU_VERSION }}
72
+
73
73
statusCheck :
74
74
name : statusCheck
75
75
runs-on : ubuntu-latest
76
- needs : [build_packages ]
76
+ needs : [plenum_tests ]
77
77
steps :
78
78
- run : ' echo "Just a status Check (Always true, when executed) for branch protection rules(blocks merging while test are running and if tests fail)." '
You can’t perform that action at this time.
0 commit comments