Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/pull-request-main-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ jobs:
build-units-engine:
uses: ./.github/workflows/task-build-units-engine.yml

# Build Madara binary
build-madara:
uses: ./.github/workflows/task-build-madara.yml

# Run linters for code style and quality
lint-code-style:
uses: ./.github/workflows/task-lint-code-style.yml
Expand All @@ -39,9 +35,8 @@ jobs:

# Run Units Engine tests and generate coverage reports
test-units-engine:
needs: [build-units-engine, build-madara]
needs: [build-units-engine]
uses: ./.github/workflows/task-test-coverage.yml
with:
units-engine-binary-hash: ${{ needs.build-units-engine.outputs.units-engine-binary-hash }}
madara-binary-hash: ${{ needs.build-madara.outputs.madara-binary-hash }}
secrets: inherit
70 changes: 0 additions & 70 deletions .github/workflows/task-build-madara.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .github/workflows/task-test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ on:
description: "Hash used to retrieve the artifact"
required: true
type: string
madara-binary-hash:
description: "Hash used to retrieve the artifact"
required: true
type: string

jobs:
test-with-coverage:
Expand Down Expand Up @@ -45,12 +41,6 @@ jobs:
with:
name: units-engine-binary-${{ inputs.units-engine-binary-hash }}
path: target/release/
- name: Download Madara binary
uses: actions/download-artifact@v4
with:
name: madara-binary-${{ inputs.madara-binary-hash }}
path: crates/handlers/starknet/src/tests/build/
- run: chmod +x crates/handlers/starknet/src/tests/build/madara

- name: Run tests with coverage
run: |
Expand Down
Loading
Loading