Lines Matching +full:add +full:- +full:path

11   security-events: write
16 fail-fast: false
21 runs-on: ubuntu-latest
24 - name: Checkout
27 - name: Setup Python 3.10
28 uses: actions/setup-python@v5
30 python-version: '3.10'
32 cache-dependency-path: Testing/requirements.txt
34 - name: Install system packages
36 sudo add-apt-repository ppa:deadsnakes/ppa
37 sudo apt-get install libpython3.9 libtinfo5
39 - name: Cache packs
42 key: packs-cmsis-dsp
43 restore-keys: |
44 packs-
45 path: /home/runner/.cache/arm/packs
47 - name: Activate vcpkg
48 uses: ARM-software/cmsis-actions/vcpkg@v1
50 cache: "-cmsis_dsp_vcpkg"
52 - name: Activate Arm tool license
53 uses: ARM-software/cmsis-actions/armlm@v1
55 - name: Cache boost
56 id: cache-boost
59 key: boost-cmsis-dsp
60 restore-keys: |
61 boost-cmsis-dsp
62 path: ${{ github.workspace }}/boost_1_84_0
64 - name: Install boost
65 if: steps.cache-boost.outputs.cache-hit != 'true'
68 curl -o boost.tar.gz https://archives.boost.io/release/1.84.0/source/boost_1_84_0.tar.gz
69 tar -xf boost.tar.gz
71 - name: Prepare framework
80 pip install -r ../Testing/requirements.txt
83 csolution list packs -s test.csolution.yml -m > required_packs.txt
86 cpackget add -a -f required_packs.txt
89 - name: Execute
94 … python run_all.py -t -g ${{ matrix.compiler }} -c ${{ matrix.core }} -avh $AVH_FVP_PLUGINS/../bin
96 - name: Upload test report
97 uses: actions/upload-artifact@v4
99 name: test-cpp-report_${{ matrix.compiler }}_${{ matrix.core }}
100 path: dsppp/${{ matrix.compiler }}_results/errors_${{ matrix.core }}.txt
103 - name: Check error
108 test "$(cat ${{ matrix.compiler }}_results/errors_${{ matrix.core }}.txt | wc -l)" -eq 0