Skip to content

Commit

Permalink
CI: Fixes for Compile workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Sep 7, 2024
1 parent 1dffcbe commit 5533e59
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ on:
paths-ignore:
- '*.md'
- '.git*'
workflow_call:

jobs:
checkout-classes:
Expand All @@ -25,7 +26,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: v3.000.1
ref: v3.000.2
repository: EA31337/EA31337-classes
- name: Uploads source code
uses: actions/upload-artifact@v4
Expand All @@ -41,6 +42,7 @@ jobs:
artifact_overwrite: true
skip_cleanup: true
version: 4

mt5:
name: Installs platform (5)
uses: EA31337/EA-Tester/.github/workflows/platform-linux.yml@dev
Expand Down Expand Up @@ -68,6 +70,8 @@ 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:
Expand All @@ -79,10 +83,11 @@ jobs:
run: '(Get-ChildItem -Recurse -Path . -Include *.ex[45]).fullname'
- run: Get-Location
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Strategy
path: '**/Stg_*.ex[45]'
if-no-files-found: error
name: Strategy-ex${{ matrix.version }}
path: '**/Stg_*.ex${{ matrix.version }}'
strategy:
matrix:
version:
Expand Down

0 comments on commit 5533e59

Please sign in to comment.