diff --git a/.ci/MW-RefApps/Examples/Network/Network.csolution.yml b/.ci/MW-RefApps/Examples/Network/Network.csolution.yml deleted file mode 100644 index 72da0dc..0000000 --- a/.ci/MW-RefApps/Examples/Network/Network.csolution.yml +++ /dev/null @@ -1,35 +0,0 @@ -solution: - created-for: CMSIS-Toolbox@2.5.0 - cdefault: - -# select-compiler: # list of tested compilers that can be selected -# - compiler: AC6 -# compiler: AC6 - - - target-types: - - type: STM32H743I-EVAL - board: STM32H743I-EVAL - variables: - - Board-Layer: $SolutionDir()$/Board/Board.clayer.yml - - build-types: - - type: Debug - debug: on - optimize: debug - - - type: Release - debug: off - optimize: balanced - - projects: - - project: ./BSD_Client/BSD_Client.cproject.yml - - project: ./BSD_Server/BSD_Server.cproject.yml - - project: ./FTP_Server/FTP_Server.cproject.yml - - project: ./HTTP_Server/HTTP_Server.cproject.yml - - project: ./HTTP_Upload/HTTP_Upload.cproject.yml - - project: ./HTTPS_Server/HTTPS_Server.cproject.yml - - project: ./SMTP_Client/SMTP_Client.cproject.yml - - project: ./SMTPS_Client/SMTPS_Client.cproject.yml - - project: ./SNMP_Agent/SNMP_Agent.cproject.yml - - project: ./Telnet_Server/Telnet_Server.cproject.yml diff --git a/.github/workflows/Test-RefApps.yml b/.github/workflows/Test-RefApps.yml index 8ba51e9..de704d7 100644 --- a/.github/workflows/Test-RefApps.yml +++ b/.github/workflows/Test-RefApps.yml @@ -95,14 +95,15 @@ jobs: run: | cbuild ./${{ matrix.solution.name }}.csolution.yml --update-rte --packs \ --toolchain AC6 --rebuild - rm -rf tmp - name: Upload Artifact of the ${{ matrix.solution.name }} AC6 build - if: always() + if: always() uses: actions/upload-artifact@v4 with: name: ${{ matrix.solution.name }}_AC6 - path: ./CI/MW-RefApps/Examples/${{ matrix.solution.dir }}/ + path: | + ./CI/MW-RefApps/Examples/${{ matrix.solution.dir }}/ + !tmp/ retention-days: 1 - name: ${{ matrix.solution.name }} GCC build test @@ -110,19 +111,16 @@ jobs: working-directory: ./CI/MW-RefApps/Examples/${{ matrix.solution.dir }}/ run: | rm -rf out + rm -rf tmp cbuild ./${{ matrix.solution.name }}.csolution.yml --update-rte --packs \ --toolchain GCC --rebuild - - name: Delete tmp dir after ${{ matrix.solution.name }} GCC build test - if: always() - working-directory: ./CI/MW-RefApps/Examples/${{ matrix.solution.dir }}/ - run: | - rm -rf tmp - - name: Upload Artifact of the ${{ matrix.solution.name }} GCC build - if: always() + if: always() uses: actions/upload-artifact@v4 with: name: ${{ matrix.solution.name }}_GCC - path: ./CI/MW-RefApps/Examples/${{ matrix.solution.dir }}/ + path: | + ./CI/MW-RefApps/Examples/${{ matrix.solution.dir }}/ + !tmp/ retention-days: 1 \ No newline at end of file