Skip to content

Commit

Permalink
Checking free -mh and ps on make boot
Browse files Browse the repository at this point in the history
  • Loading branch information
Shihab Suliman committed May 23, 2024
1 parent a8e89ad commit 4975788
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 31 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_make_boot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ jobs:
include:
- platform: zynq
app: PandABox-no-fmc
- platform: zynqmp
app: xu5_st1-no-fmc
runs-on:
group: iris_runners
container:
Expand Down Expand Up @@ -39,6 +37,8 @@ jobs:
cd repos/PandABlocks-fpga
ln -s CONFIG.example CONFIG
make boot APP_NAME=${{ matrix.app }}
free -mh
ps
if test -f /build/boot*.zip; then
echo "boot_files=true" >> $GITHUB_OUTPUT
fi
Expand Down
29 changes: 0 additions & 29 deletions .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,32 +15,3 @@ jobs:
# Make Boot files
make_boot:
uses: ./.github/workflows/_make_boot.yml

# Make zpkg for FPGA apps
make_zpkg:
uses: ./.github/workflows/_make_zpkg.yml

# Optional revert on failed push workflow
undo:
needs: [ make_boot, make_zpkg, test_hdl ]
uses: ./.github/workflows/_undo.yml

# Release on push to tag
release:
needs: [ make_boot, make_zpkg, test_hdl, test_matrix, test_python_autogen ]
uses: ./.github/workflows/_release.yml

# Generate job matrix to evenly split tests
test_matrix:
uses: ./.github/workflows/_test_matrix.yml

# python and autogen tests
test_python_autogen:
uses: ./.github/workflows/_test_python_autogen.yml

# hdl tests
test_hdl:
needs: [test_matrix, test_python_autogen]
uses: ./.github/workflows/_test_hdl.yml
with:
matrix: ${{needs.test_matrix.outputs.matrix}}

0 comments on commit 4975788

Please sign in to comment.