Skip to content

Commit

Permalink
Show repodata.json by default
Browse files Browse the repository at this point in the history
  • Loading branch information
j-woz committed Jan 23, 2025
1 parent cd04570 commit 55eec72
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions dev/jenkins/anaconda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,16 @@ task $SWIFT_T/dev/conda/setup-conda.sh
task $SWIFT_T/dev/conda/conda-platform.sh $R $CONDA_PLATFORM

BLD_DIR=$WORKSPACE/sfw/Miniconda-build/conda-bld/linux-64
REPODATA=$BLD_DIR/repodata.json
log "CHECKING PACKAGE in $BLD_DIR ..."
if ! BZ2=$( python $SWIFT_T/dev/conda/find-pkg.py -v \
$BLD_DIR/repodata.json )
# Show JSON for debugging:
if which json_pp >& /dev/null
then
json_pp < $REPODATA
else
cat $REPODATA
fi
if ! BZ2=$( python $SWIFT_T/dev/conda/find-pkg.py -v $REPODATA )
then
print
log "CHECKING PACKAGE FAILED!"
Expand Down

0 comments on commit 55eec72

Please sign in to comment.