mirror of https://github.com/mamba-org/mamba.git
Bump libcurl to 7.82.0 and add a test that catches the bug (#1569)
This commit is contained in:
parent
dd79c3fb14
commit
bd9b743342
|
@ -10,7 +10,7 @@ dependencies:
|
|||
- libsolv >=0.7.18
|
||||
- libarchive
|
||||
- libsodium
|
||||
- libcurl 7.76.1 *_0
|
||||
- libcurl 7.82.0 *_0
|
||||
- gtest
|
||||
- gmock
|
||||
- cpp-filesystem >=1.5.8
|
||||
|
|
|
@ -3,8 +3,8 @@ channels:
|
|||
- conda-forge
|
||||
dependencies:
|
||||
- yaml-cpp-static
|
||||
- libcurl=7.76.1=*_0
|
||||
- libcurl-static=7.76.1 *_0
|
||||
- libcurl=7.82.0=*_0
|
||||
- libcurl-static=7.82.0 *_0
|
||||
- xz-static
|
||||
- libssh2-static
|
||||
- libarchive=3.3
|
||||
|
|
|
@ -10,7 +10,7 @@ dependencies:
|
|||
- libsolv >=0.7.18
|
||||
- libarchive
|
||||
- libsodium
|
||||
- libcurl 7.76.1 *_0
|
||||
- libcurl 7.82.0 *_0
|
||||
- gtest
|
||||
- gmock
|
||||
- cpp-filesystem >=1.5.8
|
||||
|
|
|
@ -10,7 +10,7 @@ dependencies:
|
|||
- libsolv >=0.7.18
|
||||
- libarchive
|
||||
- libsodium
|
||||
- libcurl 7.76.1 *_0
|
||||
- libcurl 7.82.0 *_0
|
||||
- gtest
|
||||
- gmock
|
||||
- cpp-filesystem >=1.5.8
|
||||
|
|
|
@ -35,3 +35,13 @@ if [[ "$(uname -s)" == "Linux" ]]; then
|
|||
sleep 5s
|
||||
kill -TERM $PID
|
||||
fi
|
||||
|
||||
export TESTPWD=":test"
|
||||
python reposerver.py -d repo/ --auth basic --port 8005 & PID=$!
|
||||
python reposerver.py -d repo/ --auth basic --port 8006 & PID2=$!
|
||||
python reposerver.py -d repo/ --auth basic --port 8007 & PID3=$!
|
||||
mamba create -y -q -n $ENV_NAME --override-channels -c http://:test@localhost:8005/ -c http://:test@localhost:8006/ -c http://:test@localhost:8007/ test-package --json
|
||||
kill -TERM $PID
|
||||
kill -TERM $PID2
|
||||
kill -TERM $PID3
|
||||
rm -rf $CONDA_PREFIX/envs/$ENV_NAME
|
||||
|
|
|
@ -10,7 +10,7 @@ dependencies:
|
|||
- libsolv >=0.7.18
|
||||
- libarchive
|
||||
- libsodium
|
||||
- libcurl 7.76.1 *_0
|
||||
- libcurl 7.82.0 *_0
|
||||
- gtest
|
||||
- gmock
|
||||
- cpp-filesystem >=1.5.8
|
||||
|
|
Loading…
Reference in New Issue