Skip to content

Commit

Permalink
GHA: Compile: Removes failing strategies on compile
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Oct 7, 2023
1 parent 7d95fc6 commit 190a876
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,25 @@ jobs:
ref: v2.000-dev
repository: EA31337/EA31337-strategies
submodules: recursive
- name: Deletes Arrows as it fails to compile
run: 'Remove-Item -LiteralPath "Arrows" -Force -Recurse -Verbose'
- name: Deletes SVE_Bollinger_Bands as it fails to compile
run: 'Remove-Item -LiteralPath "SVE_Bollinger_Bands" -Force -Recurse -Verbose'

Check failure on line 47 in .github/workflows/compile.yml

View workflow job for this annotation

GitHub Actions / Pre-commit

47:81 [line-length] line too long (86 > 80 characters)
- name: Deletes TMAT_SVEBB as it fails to compile
run: 'Remove-Item -LiteralPath "TMAT_SVEBB" -Force -Recurse -Verbose'
- name: Compile for MQL4
uses: fx31337/mql-compile-action@master
with:
include: .
mt-version: 5.0.0.2361
path: "**/Stg_*.mq4 !(Stg_{Arrows,SVE_Bollinger_Bands}.mq?)"
path: "*/Stg_*.mq4"
verbose: true
- name: Compile for MQL5
uses: fx31337/mql-compile-action@master
with:
include: .
mt-version: 5.0.0.2515
path: "**/Stg_*.mq5 !(Stg_{Arrows,SVE_Bollinger_Bands}.mq?)"
path: "*/Stg_*.mq5"
verbose: true
- name: List compiled files
run: '(Get-ChildItem -Recurse -Path . -Include *.ex[45]).fullname'
Expand Down

0 comments on commit 190a876

Please sign in to comment.