@@ -171,7 +171,27 @@ jobs:
171171 with :
172172 name : build-cpu-rocky-8-arm
173173 path : build/install
174+
175+ test-cpu-rocky-8-arm :
176+ needs : build-cpu-rocky-8-arm
177+ runs-on : ubuntu-24.04-arm
178+ container :
179+ image : arm64v8/rockylinux:8
174180
181+ steps :
182+ - name : Download Artifact
183+ uses : actions/download-artifact@v4
184+ with :
185+ name : build-cpu-rocky-8-arm
186+
187+ - name : Test
188+ # Adding execution bit to binaries is needed since upload/download GHA is using zip compression
189+ # and it can't preserve files permissions - https://github.com/actions/upload-artifact/issues/38
190+ run : |
191+ chmod +x ./bin/*
192+ ./bin/oidnTest
193+ ./bin/oidnBenchmark -v 1
194+
175195 build-cpu-ubuntu-2204-arm :
176196 runs-on : ubuntu-24.04-arm
177197 container :
@@ -210,3 +230,24 @@ jobs:
210230 with :
211231 name : build-cpu-ubuntu-2204-arm
212232 path : build/install
233+
234+ test-cpu-ubuntu-2204-arm :
235+ needs : build-cpu-ubuntu-2204-arm
236+ runs-on : ubuntu-24.04-arm
237+ container :
238+ image : arm64v8/ubuntu:22.04
239+
240+ steps :
241+ - name : Download Artifact
242+ uses : actions/download-artifact@v4
243+ with :
244+ name : build-cpu-ubuntu-2204-arm
245+
246+ - name : Test
247+ # Adding execution bit to binaries is needed since upload/download GHA is using zip compression
248+ # and it can't preserve files permissions - https://github.com/actions/upload-artifact/issues/38
249+ run : |
250+ chmod +x ./bin/*
251+ ./bin/oidnTest
252+ ./bin/oidnBenchmark -v 1
253+
0 commit comments