Skip to content

Commit

Permalink
20230329 Fix CI build breakage. 5
Browse files Browse the repository at this point in the history
         Related Issue(s) #155 #158 #159 #162
  • Loading branch information
NathanGibbs3 committed Mar 29, 2023
1 parent 1a01456 commit 04fe32a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/setupenv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ if [ "$Composer" \< "1" ]; then # Can we install it?
# ca-certificates package have expired.
dc="wget -nv --no-check-certificate http://curl.se/ca/cacert.pem"
dl=/usr/local/share/ca-certificates
$dc -O $dl/cabundle.crt
sudo $dc -O $dl/cabundle.crt
# Add Ubuntu Trusty repo.
# sudo add-apt-repository -y deb http://us.archive.ubuntu.com/ubuntu/ trusty
# sudo apt-get -q update
Expand Down Expand Up @@ -188,13 +188,13 @@ ADODl=archive
ADOFilePfx=v
ADOFileSfx=.tar.gz
if [ "$pvM" \> "7" ]; then # PHP 8x
ADODBVer=5.20.19
ADODBVer=5.20.20
if [ "$1" == "" ] && [ "$TRAVIS" == "true" ]; then
ADODBPATH="ADOdb-$ADODBVer"
fi
elif [ "$pvM" \> "5" ]; then # PHP 7x
if [ "$pvm" \> "2" ]; then # PHP 7.3+
ADODBVer=5.20.17
ADODBVer=5.20.18
elif [ "$pvm" \> "1" ]; then # PHP 7.2+
ADODBVer=5.20.13
else
Expand All @@ -205,7 +205,7 @@ elif [ "$pvM" \> "5" ]; then # PHP 7x
fi
elif [ "$pvM" \> "4" ]; then # PHP 5x
if [ "$pvm" \> "2" ]; then # PHP 5.3+
ADODBVer=5.16
ADODBVer=5.17
else
ADODBVer=5.01beta
fi
Expand Down

0 comments on commit 04fe32a

Please sign in to comment.