Lines Matching +full:- +full:- +full:url

1 # SPDX-FileCopyrightText: Copyright 2022 Arm Limited and/or its affiliates <open-source-office@arm.…
3 # SPDX-License-Identifier: Apache-2.0
9 # www.apache.org/licenses/LICENSE-2.0
21 - microspeech
25 - completed
38 runs-on: ubuntu-latest
40 - name: Set a pending status to the PR
45 curl --request POST \
46--url https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.event.workflow_run…
47 --header "authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
48 --header 'content-type: application/json' \
49 --data '{
54 --fail
58 runs-on: ubuntu-latest
61 id-token: write
65 pull-requests: write
68 - uses: actions/checkout@v4
70 repository: ARM-software/AVH-TFLmicrospeech
73 - name: Set up Python 3.10
74 uses: actions/setup-python@v5
76 python-version: '3.10'
78 - name: Install AVH Client for Python
80 pip install arm-avhclient
82 - name: Download pack from upstream workflow
87 mkdir -p artifacts && cd artifacts
91 …gh api "$artifacts_url" -q '.artifacts[] | select(.name=="artifact") | [.name, .archive_download_u…
93 IFS=$'\t' read name url <<< "$artifact"
94 gh api $url > "$name.zip"
95 unzip -d "$name" "$name.zip"
98 cp artifact/ARM.CMSIS-NN.*.pack ../Platform_FVP_Corstone_SSE-300_Ethos-U55/
100 - name: Download latest release pack
105 …gh -R ${{ github.repository }} release download -p "*.pack" -D Platform_FVP_Corstone_SSE-300_Ethos
107 - name: Configure AWS Credentials
108 uses: aws-actions/configure-aws-credentials@v4.0.2
110 role-to-assume: ${{ env.AWS_ASSUME_ROLE }}
111 aws-region: ${{ env.AWS_DEFAULT_REGION }}
113 - name: Apply patch
116 basename $(ls Platform_FVP_Corstone_SSE-300_Ethos-U55/ARM.CMSIS-NN.*.pack) | \
117 cut -d. -f 3-5 | cut -d+ -f 1 \
119 patch -p0 <<EOF
120 --- Platform_FVP_Corstone_SSE-300_Ethos-U55/microspeech.Example.Reference.cprj
121 +++ Platform_FVP_Corstone_SSE-300_Ethos-U55/microspeech.Example.Reference.cprj
122 @@ -11,2 +11,3 @@
124 + <package name="CMSIS-NN" vendor="ARM" version="${VERSION}:${VERSION}"/>
126 @@ -130,3 +131,2 @@
128 - <file category="sourceC" name="../micro_speech/src/arm_nn_softmax_common_s8.c"/>
130 --- Platform_FVP_Corstone_SSE-300_Ethos-U55/microspeech.Example.SIMD.cprj
131 +++ Platform_FVP_Corstone_SSE-300_Ethos-U55/microspeech.Example.SIMD.cprj
132 @@ -11,2 +11,3 @@
134 + <package name="CMSIS-NN" vendor="ARM" version="${VERSION}:${VERSION}"/>
136 @@ -130,3 +131,2 @@
138 - <file category="sourceC" name="../micro_speech/src/arm_nn_softmax_common_s8.c"/>
140 --- Platform_FVP_Corstone_SSE-300_Ethos-U55/microspeech.Example.Helium.cprj
141 +++ Platform_FVP_Corstone_SSE-300_Ethos-U55/microspeech.Example.Helium.cprj
142 @@ -11,2 +11,3 @@
144 + <package name="CMSIS-NN" vendor="ARM" version="${VERSION}:${VERSION}"/>
146 @@ -130,3 +131,2 @@
148 - <file category="sourceC" name="../micro_speech/src/arm_nn_softmax_common_s8.c"/>
150 --- avh.yml Tue Nov 22 12:01:56 2022
152 @@ -12,2 +12,5 @@
154 + - run: |
155 + cd Platform_FVP_Corstone_SSE-300_Ethos-U55
156 + cpackget add ARM.CMSIS-NN.*.pack
157 - run: |
160 - name: Execute test suite on Arm Virtual Hardware at AWS
162 avhclient -b aws execute --specfile ./avh.yml
164 - name: Fetch results from Arm Virtual Hardware
166 cat ./Platform_FVP_Corstone_SSE-300_Ethos-U55/microspeech.Reference.log
167 cat ./Platform_FVP_Corstone_SSE-300_Ethos-U55/microspeech.SIMD.log
168 cat ./Platform_FVP_Corstone_SSE-300_Ethos-U55/microspeech.Helium.log
170 - name: Decode EventRecorder logs
172 …wget https://github.com/ARM-software/CMSIS-View/releases/download/tools%2Feventlist%2F1.0.10/event…
173 tar -xvf eventlist-linux64.tar.gz
174 chmod +x eventlist-linux64/eventlist
175 …eventlist-linux64/eventlist -s ./Platform_FVP_Corstone_SSE-300_Ethos-U55/microspeech.Reference.Eve…
176 …eventlist-linux64/eventlist -s ./Platform_FVP_Corstone_SSE-300_Ethos-U55/microspeech.SIMD.EventRec…
177 …eventlist-linux64/eventlist -s ./Platform_FVP_Corstone_SSE-300_Ethos-U55/microspeech.Helium.EventR…
180 runs-on: ubuntu-latest
184 - name: Set success status to the PR
188 curl --request POST \
189--url https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.event.workflow_run…
190 --header "authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
191 --header 'content-type: application/json' \
192 --data '{
197 --fail
200 runs-on: ubuntu-latest
204 - name: Set failure status to the PR
208 curl --request POST \
209--url https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.event.workflow_run…
210 --header "authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
211 --header 'content-type: application/json' \
212 --data '{
217 --fail