From ad78fe229b7ff8d0d9e5a2cd254d06762873881c Mon Sep 17 00:00:00 2001 From: kenorb Date: Thu, 22 Aug 2024 17:57:13 +0100 Subject: [PATCH] Improves compilation workflow --- .github/workflows/compile.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 8c64a41..1f8b37d 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -68,12 +68,16 @@ jobs: - uses: actions/download-artifact@v4 with: pattern: .mt? + - name: Enables input mode + run: echo '#define __input__' > config/define.h - name: Compile uses: fx31337/mql-compile-action@master with: include: . mt-path: .mt${{ matrix.version }} - path: "**/Stg_*.mq${{ matrix.version }}" + path: | + "**/Stg_*.mq${{ matrix.version }}" + indicators-other/**/*.mq${{ matrix.version }} verbose: true - name: List compiled files run: '(Get-ChildItem -Recurse -Path . -Include *.ex[45]).fullname'