File tree Expand file tree Collapse file tree 2 files changed +47
-17
lines changed Expand file tree Collapse file tree 2 files changed +47
-17
lines changed Original file line number Diff line number Diff line change @@ -64,23 +64,6 @@ linux_container_snippet: &LINUX_CONTAINER
6464    #  More than enough for our scripts.
6565    memory : 2G 
6666
67- task :
68-   name : " ARM64: Linux (Debian stable, QEMU)" 
69-   <<  : *LINUX_CONTAINER 
70-   env :
71-     WRAPPER_CMD : qemu-aarch64 
72-     SECP256K1_TEST_ITERS : 16 
73-     HOST : aarch64-linux-gnu 
74-     WITH_VALGRIND : no 
75-     ECDH : yes 
76-     RECOVERY : yes 
77-     SCHNORRSIG : yes 
78-     ELLSWIFT : yes 
79-     CTIMETESTS : no 
80-   test_script :
81-     - ./ci/ci.sh 
82-   <<  : *CAT_LOGS 
83- 
8467task :
8568  name : " ppc64le: Linux (Debian stable, QEMU)" 
8669  <<  : *LINUX_CONTAINER 
Original file line number Diff line number Diff line change @@ -279,6 +279,53 @@ jobs:
279279        run : env 
280280        if : ${{ always() }} 
281281
282+   arm64_debian :
283+     name : " ARM64: Linux (Debian stable, QEMU)" 
284+     runs-on : ubuntu-latest 
285+     needs : docker_cache 
286+ 
287+     env :
288+       WRAPPER_CMD : ' qemu-aarch64' 
289+       SECP256K1_TEST_ITERS : 16 
290+       HOST : ' aarch64-linux-gnu' 
291+       WITH_VALGRIND : ' no' 
292+       ECDH : ' yes' 
293+       RECOVERY : ' yes' 
294+       SCHNORRSIG : ' yes' 
295+       ELLSWIFT : ' yes' 
296+       CTIMETESTS : ' no' 
297+ 
298+     steps :
299+       - name : Checkout 
300+         uses : actions/checkout@v3 
301+ 
302+       - name : CI script 
303+         uses : ./.github/actions/run-in-docker-action 
304+         with :
305+           dockerfile : ./ci/linux-debian.Dockerfile 
306+           tag : linux-debian-image 
307+           command : > 
308+             git config --global --add safe.directory ${{ github.workspace }} && 
309+             ./ci/ci.sh 
310+ 
311+ run : cat tests.log || true 
312+         if : ${{ always() }} 
313+       - run : cat noverify_tests.log || true 
314+         if : ${{ always() }} 
315+       - run : cat exhaustive_tests.log || true 
316+         if : ${{ always() }} 
317+       - run : cat ctime_tests.log || true 
318+         if : ${{ always() }} 
319+       - run : cat bench.log || true 
320+         if : ${{ always() }} 
321+       - run : cat config.log || true 
322+         if : ${{ always() }} 
323+       - run : cat test_env.log || true 
324+         if : ${{ always() }} 
325+       - name : CI env 
326+         run : env 
327+         if : ${{ always() }} 
328+ 
282329  mingw_debian :
283330    name : ${{ matrix.configuration.job_name }} 
284331    runs-on : ubuntu-latest 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments