File tree 2 files changed +5
-4
lines changed 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 23
23
run : |
24
24
sudo apt-get update -qq
25
25
sudo apt-get install -y cmake cmake-data gfortran libcurl4-openssl-dev libxslt1-dev python3-setuptools
26
- sudo python3 -m pip install conan
26
+ pip3 install --user conan
27
+ source ~/.profile
27
28
- name : Build TiXI
28
29
run : |
29
30
mkdir build
@@ -68,13 +69,13 @@ jobs:
68
69
md c:\tixi-3rdparty -Force | Out-Null
69
70
If (!(Test-Path -Path "c:\tixi-3rdparty\tixi-3rdparty-vc2015-win64")) {
70
71
Write-Output "Downloading tixi 3rdparty libraries"
71
- (new-object System.Net.WebClient).Downloadfile(" https://sourceforge.net/projects/tixi/files/dev-tools/tixi-3rdparty-vc2015-win64.zip", "c:\tixi-3rdparty-vc2015-win64.zip")
72
+ Invoke-WebRequest -UserAgent "Wget" -Uri " https://sourceforge.net/projects/tixi/files/dev-tools/tixi-3rdparty-vc2015-win64.zip" -OutFile "c:\tixi-3rdparty-vc2015-win64.zip"
72
73
Write-Output "Extract tixi 3rdparty libraries"
73
74
& 7z x -y "c:\tixi-3rdparty-vc2015-win64.zip" -oC:\tixi-3rdparty\ > null
74
75
}
75
76
If (!(Test-Path -Path "c:\tixi-3rdparty\matlab-libs-win")) {
76
77
Write-Output "Downloading matlab libraries"
77
- (new-object System.Net.WebClient).Downloadfile(" https://sourceforge.net/projects/tixi/files/dev-tools/matlab-libs-win.zip", "c:\matlab-libs-win.zip")
78
+ Invoke-WebRequest -UserAgent "Wget" -Uri " https://sourceforge.net/projects/tixi/files/dev-tools/matlab-libs-win.zip" -OutFile "c:\matlab-libs-win.zip"
78
79
Write-Output "Extract matlab libraries"
79
80
& 7z x -y "c:\matlab-libs-win.zip" -oC:\tixi-3rdparty\ > null
80
81
}
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ def generate(self):
58
58
59
59
def requirements (self ):
60
60
self .requires ("libxml2/[>=2.12.5 <3]" )
61
- self .requires ("libxslt/1.1.39 " )
61
+ self .requires ("libxslt/1.1.42 " )
62
62
self .requires ("libcurl/[>=7.78.0 <9]" )
63
63
64
64
def layout (self ):
You can’t perform that action at this time.
0 commit comments