Skip to content

Commit

Permalink
which ipopt
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmundt committed Jan 8, 2025
1 parent 4af4c01 commit adc4333
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/test_branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,7 @@ jobs:
echo "Final conda environment:"
conda list | sed 's/^/ /'
echo "$PATH"
which ipopt || echo "IPOPT not found on PATH"
ipopt --version || echo "IPOPT not found on PATH"
- name: Setup TPL package directories
Expand Down Expand Up @@ -467,6 +468,7 @@ jobs:
echo "$IPOPT_DIR"
ls -l $IPOPT_DIR
echo "$PATH"
which ipopt || echo "IPOPT not found on PATH"
ipopt --version || echo "IPOPT not found on PATH"
- name: Install GAMS
Expand Down Expand Up @@ -528,6 +530,7 @@ jobs:
popd
fi
echo "$PATH"
which ipopt || echo "IPOPT not found on PATH"
ipopt --version || echo "IPOPT not found on PATH"
- name: Install BARON
Expand Down Expand Up @@ -566,6 +569,7 @@ jobs:
echo "$BARON_DIR"
ls -l $BARON_DIR
echo "$PATH"
which ipopt || echo "IPOPT not found on PATH"
ipopt --version || echo "IPOPT not found on PATH"
- name: Install GJH_ASL_JSON
Expand All @@ -592,6 +596,7 @@ jobs:
echo "$GJH_DIR"
ls -l $GJH_DIR
echo "$PATH"
which ipopt || echo "IPOPT not found on PATH"
ipopt --version || echo "IPOPT not found on PATH"
- name: Install Pyomo
Expand All @@ -609,6 +614,7 @@ jobs:
echo ""
echo "PYOMO_CONFIG_DIR=${GITHUB_WORKSPACE}/config" >> $GITHUB_ENV
echo "$PATH"
which ipopt || echo "IPOPT not found on PATH"
ipopt --version || echo "IPOPT not found on PATH"
# this has to be done after Pyomo is installed because highspy
Expand All @@ -620,6 +626,7 @@ jobs:
$PYTHON_EXE -m pip install --cache-dir cache/pip highspy \
|| echo "WARNING: highspy is not available"
echo "$PATH"
which ipopt || echo "IPOPT not found on PATH"
ipopt --version || echo "IPOPT not found on PATH"
- name: Download and install extensions
Expand All @@ -634,11 +641,14 @@ jobs:
echo ""
pyomo build-extensions --parallel 2
echo "$PATH"
which ipopt || echo "IPOPT not found on PATH"
ipopt --version || echo "IPOPT not found on PATH"
- name: Report pyomo plugin information
run: |
echo "$PATH"
which ipopt || echo "IPOPT not found on PATH"
ipopt --version || echo "IPOPT not found on PATH"
pyomo help --solvers || exit 1
pyomo help --transformations || exit 1
pyomo help --writers || exit 1

0 comments on commit adc4333

Please sign in to comment.