We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
lake.lock
1 parent 8a536d0 commit 25e673dCopy full SHA for 25e673d
src/lake/Lake/Build/Monad.lean
@@ -94,7 +94,8 @@ where
94
/-- Run the given build function in the Workspace's context. -/
95
@[inline] def Workspace.runBuild (ws : Workspace) (build : BuildM α) (oldMode := false) : LogIO α := do
96
let ctx ← mkBuildContext ws oldMode
97
- withLockFile ws.lockFile do build.run ctx
+ --withLockFile ws.lockFile do
98
+ build.run ctx
99
100
/-- Run the given build function in the Lake monad's workspace. -/
101
@[inline] def runBuild (build : BuildM α) (oldMode := false) : LakeT LogIO α := do
src/lake/test/lock/test.sh
@@ -1,6 +1,9 @@
1
#!/usr/bin/env bash
2
set -euxo pipefail
3
4
+echo "lock file currently disabled; skipping test"
5
+exit 0
6
+
7
LAKE=${LAKE:-../../build/bin/lake}
8
9
if [ "`uname`" = Darwin ]; then
0 commit comments