-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23926 from jaimergp/enable-conda-libmamba-solver
Bring over latest changes in conda-smithy (mostly conda-libmamba-solver)
- Loading branch information
Showing
10 changed files
with
226 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
conda>=23.7.3 | ||
conda-libmamba-solver>=23.7.0 | ||
conda-build>=3.16 | ||
conda-forge-ci-setup=3.* | ||
conda-forge-pinning | ||
networkx=2.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/bash | ||
|
||
# Provide a unified interface for the different logging | ||
# utilities CI providers offer. If unavailable, provide | ||
# a compatible fallback (e.g. bare `echo xxxxxx`). | ||
|
||
function startgroup { | ||
# Start a foldable group of log lines | ||
# Pass a single argument, quoted | ||
case ${CI:-} in | ||
azure ) | ||
echo "##[group]$1";; | ||
travis ) | ||
echo "$1" | ||
echo -en 'travis_fold:start:'"${1// /}"'\\r';; | ||
github_actions ) | ||
echo "::group::$1";; | ||
* ) | ||
echo "$1";; | ||
esac | ||
} 2> /dev/null | ||
|
||
function endgroup { | ||
# End a foldable group of log lines | ||
# Pass a single argument, quoted | ||
|
||
case ${CI:-} in | ||
azure ) | ||
echo "##[endgroup]";; | ||
travis ) | ||
echo -en 'travis_fold:end:'"${1// /}"'\\r';; | ||
github_actions ) | ||
echo "::endgroup::";; | ||
esac | ||
} 2> /dev/null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.