mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-04 18:10:18 +00:00
19 lines
447 B
YAML
19 lines
447 B
YAML
# This template installs InnoSetup
|
|
|
|
steps:
|
|
- bash: |
|
|
set -ex
|
|
if [ -x "`command -v iscc`" ]; then
|
|
echo `command -v iscc` `iscc -?` installed
|
|
else
|
|
choco install innosetup -y
|
|
fi
|
|
displayName: Install InnoSetup - Windows
|
|
condition: eq(variables['Agent.OS'], 'Windows_NT')
|
|
|
|
# - bash: |
|
|
# set -ex
|
|
# iscc
|
|
# displayName: InnoSetup
|
|
# condition: eq(variables['Agent.OS'], 'Windows_NT')
|