Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
LuigiGiuffrida98 committed Sep 9, 2024
1 parent da6b519 commit 41ba57a
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
image: ghcr.io/esl-epfl/x-heep-toolchain:latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with :
fetch-depth: 0
# - uses: actions/setup-python@v2
with:
python-version: 3.9
# - name: Install requirements
Expand All @@ -30,8 +32,13 @@ jobs:
conda activate core-v-mini-mcu
find . \
-name '*.vendor.hjson' \
| xargs -n1 util/vendor.py --verbose \
&& git diff --exit-code
| xargs -n1 util/vendor.py --verbose
if git diff --exit-code; then
echo "No differences found, vendor is up-to-date."
else
echo "::error ::Found differences, please re-vendor."
exit 1
fi
##################
# MCU Generator #
##################
Expand All @@ -43,7 +50,7 @@ jobs:
image: ghcr.io/esl-epfl/x-heep-toolchain:latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
# - uses: actions/setup-python@v2
with:
python-version: 3.8
# - name: Install requirements
Expand Down

0 comments on commit 41ba57a

Please sign in to comment.