From 89f2b5a8bde4c60c8b1e72ad7a18cad3c2577bc0 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 2 Apr 2019 09:53:05 -0700 Subject: [PATCH] Generate a lock file before using Docker Can't do it in the readonly filesystem inside! --- ci/azure-steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/azure-steps.yml b/ci/azure-steps.yml index 251b2d5..19972a7 100644 --- a/ci/azure-steps.yml +++ b/ci/azure-steps.yml @@ -11,6 +11,6 @@ steps: condition: ne( variables['Agent.OS'], 'Linux' ) displayName: Run test script - - bash: ./ci/run-docker.sh $TARGET + - bash: cargo generate-lockfile && ./ci/run-docker.sh $TARGET condition: eq( variables['Agent.OS'], 'Linux' ) displayName: Run docker test script