From 6fa199614bbec587ae085b9a7a5eced4b50c3784 Mon Sep 17 00:00:00 2001 From: losfair Date: Wed, 29 Jan 2020 01:18:25 +0800 Subject: [PATCH] Install musl-tools --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a144021f9..72ee7825e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -141,7 +141,7 @@ jobs: - bash: make release displayName: Build (*nix) condition: and(succeeded(), not(eq(variables['Agent.OS'], 'Windows_NT'))) - - bash: make release-musl + - bash: sudo apt-get install musl-tools && make release-musl displayName: Build (Linux, x86_64-unknown-linux-musl) condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux')) - bash: make release-llvm