File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ concurrency:
21
21
jobs :
22
22
build-ubuntu-X64 :
23
23
runs-on : ubuntu-22.04
24
+ outputs :
25
+ eras : ${{ steps.eras-test-lab.outputs.eras }}
24
26
steps :
25
27
- name : Checkout sources
26
28
uses : actions/checkout@v3
59
61
name : mithril-end-to-end-${{ runner.os }}-${{ runner.arch }}
60
62
path : target/release/mithril-end-to-end
61
63
if-no-files-found : error
64
+
65
+ - name : Prepare test lab eras
66
+ id : eras-test-lab
67
+ run : |
68
+ ERAS=$(./target/release/mithril-aggregator era list --json)
69
+ echo "Test Lab Eras: $ERAS"
70
+ echo "eras=$ERAS" >> $GITHUB_OUTPUT
62
71
63
72
build :
64
73
strategy :
@@ -178,7 +187,7 @@ jobs:
178
187
strategy :
179
188
fail-fast : false
180
189
matrix :
181
- era : [ thales ]
190
+ era : ${{ fromJSON(needs.build-ubuntu-X64.outputs.eras) }}
182
191
run_id : [1,2,3]
183
192
steps :
184
193
- name : Checkout sources
You can’t perform that action at this time.
0 commit comments