git.delta.rocks / unique-network / refs/commits / fedfe1ad307e

difftreelog

fix market-test

Konstantin Astakhov2023-04-26parent: #911b140.patch.diff
in: master

1 file changed

modified.github/workflows/market-test.ymldiffbeforeafterboth
11# A workflow run is made up of one or more jobs that can run sequentially or in parallel11# A workflow run is made up of one or more jobs that can run sequentially or in parallel
12jobs:12jobs:
1313
14 prepare-execution-marix:
15
16 name: Prepare execution matrix
17
18 runs-on: [self-hosted-ci]
19 outputs:
20 matrix: ${{ steps.create_matrix.outputs.matrix }}
21
22 steps:
23
24 - name: Clean Workspace
25 uses: AutoModality/action-clean@v1.1.0
26
27 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
28 - uses: actions/checkout@v3.1.0
29 with:
30 ref: ${{ github.head_ref }} #Checking out head commit
31
32 - name: Read .env file
33 uses: xom9ikk/dotenv@v2
34
35 - name: Create Execution matrix
36 uses: CertainLach/create-matrix-action@v4
37 id: create_matrix
38 with:
39 matrix: |
40 network {opal}, relay_branch {${{ env.UNIQUEWEST_MAINNET_BRANCH }}}
41
42
14 market_test:43 market_test:
44 needs: prepare-execution-marix
15 # The type of runner that the job will run on45 # The type of runner that the job will run on
16 runs-on: [self-hosted-ci,large]46 runs-on: [self-hosted-ci,large]
17 timeout-minutes: 36047 timeout-minutes: 360
22 52
23 strategy:53 strategy:
24 matrix:54 matrix:
25 include:55 include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}
26 - network: "opal", relay_branch {${{ env.UNIQUEWEST_MAINNET_BRANCH }}}
2756
28 steps:57 steps:
29 - name: Clean Workspace58 - name: Clean Workspace