diff --git a/README.md b/README.md index 2233c02..23370c5 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,7 @@

-
-
-
+
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index b5846b6..4901af2 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -29,6 +29,12 @@ jobs:
- script: choco install visualcpp-build-tools --version 14.0.25420.1 -fy && npm config set msvs_version 2015
condition: startsWith(variables['Agent.JobName'], 'windows_2015')
displayName: Install Windows Build Dependencies
+ - script: choco install nasm -fy --dir nasm && cd nasm && dir
+ condition: startsWith(variables['Agent.JobName'], 'windows')
+ displayName: Install Windows Assembler
+ - script: echo '##vso[task.prependpath]%AGENT_BUILDDIRECTORY%\nasm' && nasm -v
+ condition: startsWith(variables['Agent.JobName'], 'windows')
+ displayName: Add Windows Assembler to PATH
- script: npm install && npm run ci:build
displayName: Install dependencies and build base binaries...
env: