File tree Expand file tree Collapse file tree 1 file changed +26
-2
lines changed Expand file tree Collapse file tree 1 file changed +26
-2
lines changed Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
15
- Compile :
15
+ mt4 :
16
+ name : Installs platform (4)
17
+ uses : EA31337/EA-Tester/.github/workflows/platform-linux.yml@dev
18
+ with :
19
+ artifact_name : mt4
20
+ version : 4
21
+ mt5 :
22
+ name : Installs platform (5)
23
+ uses : EA31337/EA-Tester/.github/workflows/platform-linux.yml@dev
24
+ with :
25
+ artifact_name : mt5
26
+ version : 5
27
+
28
+ compile :
29
+ name : Compile
30
+ needs : [mt4, mt5]
16
31
runs-on : windows-latest
17
32
steps :
18
- - uses : actions/checkout@v2
33
+ - uses : actions/checkout@v4
34
+ - uses : actions/download-artifact@v4
35
+ with :
36
+ name : mt${{ matrix.version }}
37
+ path : .mt${{ matrix.version }}
19
38
- name : Compile
20
39
uses : fx31337/mql-compile-action@master
21
40
with :
22
41
init-platform : true
42
+ mt-path : .mt${{ matrix.version }}
23
43
verbose : true
24
44
- name : Print compiled files
25
45
run : ' (Get-ChildItem -Recurse -Path . -Include *.ex[45]).fullname'
26
46
shell : powershell
47
+
48
+ strategy :
49
+ matrix :
50
+ version : [4, 5]
You can’t perform that action at this time.
0 commit comments