From be4ab09745229e237c524aab6a3e16d4ea0ec77d Mon Sep 17 00:00:00 2001 From: calebboyd Date: Tue, 23 Apr 2019 15:55:14 -0500 Subject: [PATCH] chore: update ci in readme --- README.md | 4 +--- azure-pipelines.yml | 6 ++++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2233c02..23370c5 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,7 @@

- Mac Build Status - Linux Build Status - Windows Build Status + Build Status Downloads Version License 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: