Skip to content

Commit

Permalink
Merge pull request #14 from HMHansson:development
Browse files Browse the repository at this point in the history
Dev Ready
  • Loading branch information
HMHansson authored Jul 4, 2024
2 parents 50cc501 + 6096669 commit 5a9d6f2
Show file tree
Hide file tree
Showing 18 changed files with 19 additions and 25 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/commit-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@
#
# ------------------------------------------------------------------------------
name: Commit Development
run-name: Validate and Commit
run-name: Commit Development
on: [workflow_dispatch]

jobs:
Validate-Dev:
Dev-Validation:
uses: HMHansson/ICA-DevOps/.github/workflows/validation-bruno.yml@main
secrets: inherit
with:
environment: Development

Commit-Development-Assets:
Commit:
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}
needs: [Validate-Dev]
needs: [Dev-Validation]
uses: HMHansson/ICA-DevOps/.github/workflows/commit-development.yml@main
secrets: inherit
with:
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/promote-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@
# 3) Run predefined tests for this project in wM.io PROD environment
#
# ------------------------------------------------------------------------------
name: Deploy Production
run-name: Promote to Prod Environment
name: Deployment Prod
run-name: Promotion Production Environment
on:
workflow_call:
push:
branches:
- production
Expand All @@ -22,18 +21,18 @@ jobs:
# -------------------------------
# Import test assets to wM.io
# -------------------------------
Promote-Prod-Assets:
Promote-Assets:
uses: HMHansson/ICA-DevOps/.github/workflows/promote.yml@main
secrets: inherit
with:
environment: Production

# -------------------------------
# Validate PROD with test cases
# -------------------------------
Validate-Prod:
QA-Prod:
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}
needs: [Promote-Prod-Assets]
needs: [Promote-Assets]
uses: HMHansson/ICA-DevOps/.github/workflows/validation-bruno.yml@main
secrets: inherit
with:
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/promote-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@
# 3) Run predefined tests for this project in wM.io TEST environment
#
# ------------------------------------------------------------------------------
name: Deploy Test
run-name: Promote to Test Environment
name: Deployment QA-Test
run-name: Promotion Test Environment
on:
workflow_call:
push:
branches:
- test
Expand All @@ -22,7 +21,7 @@ jobs:
# -------------------------------
# Import test assets to wM.io
# -------------------------------
Promote-Test-Assets:
Promote-Assets:
uses: HMHansson/ICA-DevOps/.github/workflows/promote.yml@main
secrets: inherit
with:
Expand All @@ -31,9 +30,9 @@ jobs:
# -------------------------------
# Validate TEST with test cases
# -------------------------------
Validate-Test:
QA-Test:
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}
needs: [Promote-Test-Assets]
needs: [Promote-Assets]
uses: HMHansson/ICA-DevOps/.github/workflows/validation-bruno.yml@main
secrets: inherit
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validation-bruno.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
# b) uses the password from the GitHub environment secrets variable
#
# ------------------------------------------------------------------------------
name: Dev Test Case Validation
run-name: Test Cases Validation
name: Assertion Bruno Test Cases
run-name: Test Cases Development Environment
on:
workflow_dispatch:
push:
Expand All @@ -25,7 +25,7 @@ on:
- 'test/TestCollection/**'

jobs:
Run-Dev-Tests:
Dev-Validation:
uses: HMHansson/ICA-DevOps/.github/workflows/validation-bruno.yml@main
secrets: inherit
with:
Expand Down
Binary file modified assets/flow_services/consumerRestCreateCustomerOrder.zip
Binary file not shown.
Binary file modified assets/flow_services/consumerWsCreateCustomerOrder.zip
Binary file not shown.
Binary file modified assets/flow_services/mapEANCOM96A_CustomerOrderInfo.zip
Binary file not shown.
Binary file modified assets/flow_services/myAPI.zip
Binary file not shown.
Binary file modified assets/flow_services/processOrderResponse.zip
Binary file not shown.
Binary file modified assets/flow_services/routeOrderResponse.zip
Binary file not shown.
Binary file modified assets/flow_services/utilErrorHandling.zip
Binary file not shown.
Binary file modified assets/flow_services/utilGetEdiContent.zip
Binary file not shown.
Binary file modified assets/flow_services/utilGetExecutionResultLink.zip
Binary file not shown.
Binary file modified assets/flow_services/utilGetPartnerGroups.zip
Binary file not shown.
Binary file modified assets/flow_services/utilInPartnerGroups.zip
Binary file not shown.
Binary file modified assets/flow_services/utilPublishErrorEvent.zip
Binary file not shown.
Binary file modified assets/project/ICA-Blueprint.zip
Binary file not shown.
6 changes: 1 addition & 5 deletions test/TestCollection/Main Functional/B2B OrderResponse.bru
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,11 @@ meta {
}

post {
url: {{B2B_URL}}?cicd=false
url: {{B2B_URL}}
body: text
auth: basic
}

query {
cicd: false
}

headers {
Content-Type: application/edi
Accept: application/json
Expand Down

0 comments on commit 5a9d6f2

Please sign in to comment.