-
Notifications
You must be signed in to change notification settings - Fork 43
Description
Description
Within the last few days our ADO CI/CD Pipeline is now failing with this new mta plugin being released. We haven't updated anything, and we are getting the following error:
"version `GLIBC_2.32' not found"
Log
"Searching CF-Community for plugin multiapps...
Plugin multiapps 3.2.1 found in: CF-Community
Attention: Plugins are binaries written by potentially untrusted authors.
Install and use plugins at your own risk.
Starting download of plugin binary from repository CF-Community...
0 B / 15.91 MiB 0.00%
15.91 MiB / 15.91 MiB 100.00% 0s
/home/vsts/.cf/plugins/temp1286205103/3113433036: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.32' not found (required by /home/vsts/.cf/plugins/temp1286205103/3113433036) /home/vsts/.cf/plugins/temp1286205103/3113433036: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.34' not found (required by /home/vsts/.cf/plugins/temp1286205103/3113433036)
exit status 1
File is not a valid cf CLI plugin binary.
FAILED"
Source Code in ADO
steps:
- script: |
curl -A "" https://packages.cloudfoundry.org/debian/cli.cloudfoundry.org.key | sudo apt-key add -
echo "deb https://packages.cloudfoundry.org/debian stable main" | sudo tee /etc/apt/sources.list.d/cloudfoundry-cli.list
sudo apt-get update
sudo apt-get install cf8-cli
cf -v
cf add-plugin-repo CF-Community https://plugins.cloudfoundry.org
cf install-plugin multiapps -f
cf api $(fiori_cf_api)
cf login -u$(fiori_cf_user) -p $ (fiori_cf_password) -o$(cf_org) -s $ (cf_space)
cf deploy$(Pipeline.Workspace)/$ {{ parameters.name }}/$(mta_name).mtar -f
displayName: "Deploy MTA file to SAP BTP"