Skip to content

Commit 25e673d

Browse files
committed
chore: disable lake.lock (for now)
1 parent 8a536d0 commit 25e673d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/lake/Lake/Build/Monad.lean

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ where
9494
/-- Run the given build function in the Workspace's context. -/
9595
@[inline] def Workspace.runBuild (ws : Workspace) (build : BuildM α) (oldMode := false) : LogIO α := do
9696
let ctx ← mkBuildContext ws oldMode
97-
withLockFile ws.lockFile do build.run ctx
97+
--withLockFile ws.lockFile do
98+
build.run ctx
9899

99100
/-- Run the given build function in the Lake monad's workspace. -/
100101
@[inline] def runBuild (build : BuildM α) (oldMode := false) : LakeT LogIO α := do

src/lake/test/lock/test.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/usr/bin/env bash
22
set -euxo pipefail
33

4+
echo "lock file currently disabled; skipping test"
5+
exit 0
6+
47
LAKE=${LAKE:-../../build/bin/lake}
58

69
if [ "`uname`" = Darwin ]; then

0 commit comments

Comments
 (0)