-
-
Notifications
You must be signed in to change notification settings - Fork 83
54 lines (52 loc) · 1.35 KB
/
compile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
name: Compile
# yamllint disable-line rule:truthy
on:
pull_request:
paths:
- '**/*.mq?'
- '.github/workflows/compile.yml'
push:
branches:
- 'master'
- '*dev*'
paths:
- '**/*.mq?'
- '.github/workflows/compile.yml'
jobs:
Compile-MT4:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Installs platform
uses: dawidd6/action-ansible-playbook@v2
with:
playbook: install-mt4.yml
directory: ./ansible
options: |
--connection local
--inventory localhost,
--verbose
requirements: galaxy-requirements.yml
- uses: fx31337/mql-compile-action@dev
with:
mt-path: ${{ github.workspace }}/../../../.wine/drive_c
verbose: true
Compile-MT5:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Installs platform
uses: dawidd6/action-ansible-playbook@v2
with:
playbook: install-mt5.yml
directory: ./ansible
options: |
--connection local
--inventory localhost,
--verbose
requirements: galaxy-requirements.yml
- uses: fx31337/mql-compile-action@dev
with:
mt-path: ${{ github.workspace }}/../../../.wine/drive_c
verbose: true