File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -179,6 +179,16 @@ jobs:
179179 echo "minor_dev_tag=$(echo ${{ env.version }}| sed -E 's/([0-9]+\.[0-9]+)\.[0-9]+(-[0-9a-zA-Z\+\.]+)?$/\1\2/')"
180180 echo "minor_dev_tag=$(echo ${{ env.version }}| sed -E 's/([0-9]+\.[0-9]+)\.[0-9]+(-[0-9a-zA-Z\+\.]+)?$/\1\2/')" >> $GITHUB_ENV
181181
182+ - name : Install required glibc versions
183+ run : |
184+ sudo apt-get update
185+ sudo apt-get install -y wget
186+ wget http://ftp.gnu.org/gnu/libc/glibc-2.34.tar.gz
187+ tar -xvzf glibc-2.34.tar.gz && cd glibc-2.34
188+ mkdir build && cd build
189+ ../configure --prefix=/usr
190+ make -j$(nproc) && sudo make install
191+
182192 - name : Docker Build (Action)
183193 if : ${{ !matrix.fips }}
184194 uses : hashicorp/actions-docker-build@v2
You can’t perform that action at this time.
0 commit comments