Skip to content

Commit 02222f3

Browse files
committed
Fix CI
1 parent a25f0fa commit 02222f3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/actions/setup_optimizers_windows/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ runs:
128128
shell: pwsh
129129
run: |
130130
7z x -so D:\installers\idaes-solvers.tar.gz | 7z x -si -ttar -oD:\ipopt
131-
echo "PATH=$env:PATH;D:\ipopt" >> $env:GITHUB_ENV
131+
echo "PATH=D:\ipopt;$env:PATH" >> $env:GITHUB_ENV
132132
ls D:\ipopt
133133
- name: Test IPOPT
134134
shell: pwsh

include/pyoptinterface/ipopt_model.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
#include "solvers/ipopt/IpStdCInterface.h"
44
#include "pyoptinterface/nleval.hpp"
5+
#include <cmath>
56

67
#define APILIST \
78
B(CreateIpoptProblem); \

0 commit comments

Comments
 (0)