Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[1.1] [hotfix] nsenter: refuse to build with Go 1.22 on glibc #4240

Closed
wants to merge 1 commit into from

[hotfix] nsenter: refuse to build with Go 1.22 on glibc

c1add7b
Select commit
Loading
Failed to load commit list.
Closed

[1.1] [hotfix] nsenter: refuse to build with Go 1.22 on glibc #4240

[hotfix] nsenter: refuse to build with Go 1.22 on glibc
c1add7b
Select commit
Loading
Failed to load commit list.
Cirrus CI / ci / centos-stream-8 failed Apr 2, 2024 in 6m 43s

Task Summary

Instruction install_dependencies failed in 06:37

Details

✅ 00:03 clone
❌ 06:37 install_dependencies

  perl-Pod-Perldoc-3.28-396.el8.noarch                                          
  perl-Pod-Simple-1:3.35-395.el8.noarch                                         
  perl-Pod-Usage-4:1.69-395.el8.noarch                                          
  perl-Scalar-List-Utils-3:1.49-2.el8.x86_64                                    
  perl-Socket-4:2.027-3.el8.x86_64                                              
  perl-Storable-1:3.11-3.el8.x86_64                                             
  perl-Term-ANSIColor-4.06-396.el8.noarch                                       
  perl-Term-Cap-1.17-395.el8.noarch                                             
  perl-TermReadKey-2.37-7.el8.x86_64                                            
  perl-Text-ParseWords-3.30-395.el8.noarch                                      
  perl-Text-Tabs+Wrap-2013.0523-395.el8.noarch                                  
  perl-Time-Local-1:1.280-1.el8.noarch                                          
  perl-URI-1.73-3.el8.noarch                                                    
  perl-Unicode-Normalize-1.25-396.el8.x86_64                                    
  perl-constant-1.33-396.el8.noarch                                             
  perl-interpreter-4:5.26.3-422.el8.x86_64                                      
  perl-libnet-3.11-3.el8.noarch                                                 
  perl-libs-4:5.26.3-422.el8.x86_64                                             
  perl-macros-4:5.26.3-422.el8.x86_64                                           
  perl-parent-1:0.237-1.el8.noarch                                              
  perl-podlators-4.11-1.el8.noarch                                              
  perl-threads-1:2.21-2.el8.x86_64                                              
  perl-threads-shared-1.58-2.el8.x86_64                                         
  pkgconf-1.4.2-1.el8.x86_64                                                    
  pkgconf-m4-1.4.2-1.el8.noarch                                                 
  pkgconf-pkg-config-1.4.2-1.el8.x86_64                                         
  protobuf-c-1.3.0-8.el8.x86_64                                                 

Complete!
[ $? -eq 0 ] # fail if yum failed

# Double check that all rpms were installed (yum from CentOS 7
# does not exit with an error if some packages were not found).
# Use --whatprovides since some packages are renamed.
rpm -q --whatprovides $RPMS
gcc-8.5.0-21.el8.x86_64
git-2.43.0-1.el8.x86_64
iptables-1.8.5-11.el8.x86_64
jq-1.6-8.el8.x86_64
glibc-static-2.28-251.el8.x86_64
libseccomp-devel-2.5.2-1.el8.x86_64
make-4.2.1-11.el8.x86_64
criu-3.18-4.module_el8+804+f131391c.x86_64
fuse-sshfs-2.8-7.el8.x86_64
# install Go
PREFIX="https://go.dev/dl/"
# Find out the latest minor release URL.
eval $(curl -fsSL "${PREFIX}?mode=json" | jq -r  --arg Ver "$GO_VERSION" '.[] | select(.version | startswith("go\($Ver)")) | .files[] | select(.os == "linux" and .arch == "amd64" and .kind == "archive") | "filename=\"" + .filename + "\""')
curl -fsSL "$PREFIX$filename" | tar Cxz /usr/local

gzip: stdin: not in gzip format
tar: Child died with signal 13
tar: Error is not recoverable: exiting now
curl: (23) Failed writing body (683 != 1408)

Exit status: 2