Skip to content

Commit

Permalink
Restructured actions for uploading Artifacts. Removed Network.csoluti…
Browse files Browse the repository at this point in the history
…on.yml file.
  • Loading branch information
evangelos.ganotopoulos@arm.com authored and evangelos.ganotopoulos@arm.com committed Aug 5, 2024
1 parent ab2184a commit 2b0c925
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 46 deletions.
35 changes: 0 additions & 35 deletions .ci/MW-RefApps/Examples/Network/Network.csolution.yml

This file was deleted.

20 changes: 9 additions & 11 deletions .github/workflows/Test-RefApps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,34 +95,32 @@ 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
if: always()
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

0 comments on commit 2b0c925

Please sign in to comment.