From 4975788efa3af8ded8b8b022e2a3fbd09ead94ef Mon Sep 17 00:00:00 2001 From: Shihab Suliman Date: Thu, 23 May 2024 11:47:23 +0100 Subject: [PATCH] Checking free -mh and ps on make boot --- .github/workflows/_make_boot.yml | 4 ++-- .github/workflows/code.yml | 29 ----------------------------- 2 files changed, 2 insertions(+), 31 deletions(-) diff --git a/.github/workflows/_make_boot.yml b/.github/workflows/_make_boot.yml index 6ed4394ee..856f94042 100644 --- a/.github/workflows/_make_boot.yml +++ b/.github/workflows/_make_boot.yml @@ -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: @@ -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 diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index 8364c0ae9..a12da0c3d 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -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}}