File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,18 @@ jobs:
1818      matrix :
1919        #  Stay on the oldest Ubuntu version that's still supported by Github Actions
2020        #  to avoid glibc incompatibilities as far as possible.
21-         os : [macos-latest, macos-arm, ubuntu-20.04, windows-latest] 
21+         os : [ 
22+             macos-13,  #  x64
23+             macos-14,  #  ARM
24+             ubuntu-20.04, 
25+             windows-latest, 
26+           ] 
2227        #  syntax explanation:
2328        #  https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-including-additional-values-into-combinations
2429        include :
25-           - os : macos-latest  
30+           - os : macos-13  
2631            artifact-folder : darwin 
27-           - os : macos-arm  
32+           - os : macos-14  
2833            artifact-folder : darwinarm64 
2934          - os : ubuntu-20.04 
3035            artifact-folder : linux 
@@ -107,15 +112,15 @@ jobs:
107112    - name : Download MacOS binary 
108113      uses : actions/download-artifact@v3 
109114      with :
110-         name : macos-latest  
115+         name : macos-13  
111116        path : binaries 
112117    - run : tar -xvf binary.tar 
113118      working-directory : binaries 
114119
115120    - name : Download MacOS ARM binary 
116121      uses : actions/download-artifact@v3 
117122      with :
118-         name : macos-arm  
123+         name : macos-14  
119124        path : binaries 
120125    - run : tar -xvf binary.tar 
121126      working-directory : binaries 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments