Skip to content

Commit

Permalink
azure_pipelines.yml: Fix download file command
Browse files Browse the repository at this point in the history
Signed-off-by: bia1708 <[email protected]>
  • Loading branch information
bia1708 committed Sep 13, 2023
1 parent cb8350c commit 3a558ba
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,19 +211,20 @@ jobs:
inputs:
targetType: inline
script: |
# Build and install libiio
- bash -c "/c/projects/libm2k/CI/appveyor/install_deps_msvc.sh"
#!/bin/bash
# Build and install libiio
- bash -c "/c/projects/libm2k/CI/appveyor/install_deps_msvc.sh"

# Download SWIG
- cd c:\
- wget https://sourceforge.net/projects/swig/files/swigwin/swigwin-4.0.0/swigwin-4.0.0.zip
- 7z x swigwin-4.0.0.zip -oswig
- cd swig/swigwin-4.0.0
- xcopy * .. /s /e /h /Q
#Install Inno Setup
- choco install InnoSetup
- set PATH=%PATH%;"C:\Program Files (x86)\Inno Setup 5"
# Download SWIG
cd c:\
wget https://sourceforge.net/projects/swig/files/swigwin/swigwin-4.0.0/swigwin-4.0.0.zip
- 7z x swigwin-4.0.0.zip -oswig
- cd swig/swigwin-4.0.0
- xcopy * .. /s /e /h /Q

#Install Inno Setup
- choco install InnoSetup
- set PATH=%PATH%;"C:\Program Files (x86)\Inno Setup 5"
- task: PowerShell@2
displayName: 'Build script'
env:
Expand Down

0 comments on commit 3a558ba

Please sign in to comment.