Skip to content

Commit

Permalink
🩹 (workflow): Curl mbed if base and head versions are different
Browse files Browse the repository at this point in the history
  • Loading branch information
ladislas committed Aug 12, 2021
1 parent 1db06d8 commit 1f8281e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci-code_analysis-compare_bin_map_files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@ jobs:
run: |
git checkout ${{ github.base_ref }}
make deep_clean
if [[ "$base_mbed" != "$head_mbed" ]]; then
make mbed_curl VERSION=${{ env.base_mbed }}
fi
make config
make
Expand All @@ -171,6 +174,9 @@ jobs:
run: |
git checkout ${{ github.head_ref }}
make deep_clean
if [[ "$base_mbed" != "$head_mbed" ]]; then
make mbed_curl VERSION=${{ env.head_mbed }}
fi
make config
make
Expand Down

0 comments on commit 1f8281e

Please sign in to comment.