File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ find "$WORKSPACE" -type d -path "*/build/distributions" -exec chmod a+w {} \;
7575
7676echo  --- Running release-manager
7777
78+ set  +e
7879#  Artifacts should be generated
7980docker run --rm \
8081  --name release-manager \
@@ -91,4 +92,16 @@ docker run --rm \
9192  --version " $ES_VERSION "   \
9293  --artifact-set main \
9394  --dependency " beats:https://artifacts-${WORKFLOW} .elastic.co/beats/${BEATS_BUILD_ID} /manifest-${ES_VERSION}${VERSION_SUFFIX} .json"   \
94-   --dependency " ml-cpp:https://artifacts-${WORKFLOW} .elastic.co/ml-cpp/${ML_CPP_BUILD_ID} /manifest-${ES_VERSION}${VERSION_SUFFIX} .json" 
95+   --dependency " ml-cpp:https://artifacts-${WORKFLOW} .elastic.co/ml-cpp/${ML_CPP_BUILD_ID} /manifest-${ES_VERSION}${VERSION_SUFFIX} .json"   \
96+ 2>&1  |  tee release-manager.log
97+ EXIT_CODE=$? 
98+ set  -e
99+ 
100+ #  This failure is just generating a ton of noise right now, so let's just ignore it
101+ #  This should be removed once this issue has been fixed
102+ if  grep " elasticsearch-ubi-9.0.0-SNAPSHOT-docker-image.tar.gz"   release-manager.log;  then 
103+   echo  " Ignoring error about missing ubi artifact" 
104+   exit  0
105+ fi 
106+ 
107+ exit  " $EXIT_CODE " 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments