From ec51ee03f85fb951e070802261718f1d4b0f208d Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 7 Feb 2023 13:22:44 +0100 Subject: [PATCH] Azure Pipelines: use the recommended way to add wasmer to env --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c0648cdd..63083510 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -21,7 +21,8 @@ jobs: export PATH=/opt/zig/bin:/opt/zig:$PATH displayName: Install the Zig SDK - script: | - env WASMER_DIR=${HOME}/.wasmer PATH=${HOME}/.wasmer/bin:${HOME}/.cargo/bin:$PATH dist-build/wasm32-wasi.sh + . ~/.wasmer/wasmer.sh + dist-build/wasm32-wasi.sh displayName: Compile libsodium - task: PublishBuildArtifacts@1 condition: not(canceled())