git.delta.rocks / unique-network / refs/commits / 69b0e70d5d1e

difftreelog

try to move debug into existing workflow

Alexander Aksenov2022-09-14parent: #55a6526.patch.diff
in: master

2 files changed

modified.github/workflows/xcm-tests_v2.ymldiffbeforeafterboth
--- a/.github/workflows/xcm-tests_v2.yml
+++ b/.github/workflows/xcm-tests_v2.yml
@@ -13,6 +13,11 @@
 # A workflow run is made up of one or more jobs that can run sequentially or in parallel
 jobs:
 
+  xcm-build-results:
+    steps:
+      - name: print previous job results
+        run: echo ${{needs.xcm-testnet-build.result}}
+
   prepare-execution-marix:
 
     name: Prepare execution matrix
modified.github/workflows/xcm.ymldiffbeforeafterboth
before · .github/workflows/xcm.yml
1name: Nesting XCM23on:4  workflow_call:567jobs:89  xcm-testnet-build:10    name: testnet build11    uses: ./.github/workflows/xcm-testnet-build.yml12    secrets: inherit1314  xcm-build-results:15    steps:16      - name: print previous job results17        run: echo ${{needs.xcm-testnet-build.result}}1819  xcm-tests:20    name: tests21    needs: [ xcm-testnet-build ]22    uses: ./.github/workflows/xcm-tests_v2.yml2324