Skip to content

Commit 59aefd0

Browse files
committed
fixup! Debug precompilation
1 parent 66b961c commit 59aefd0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.buildkite/pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ steps:
108108
- JuliaCI/julia#v1:
109109
version: "1.8"
110110
env:
111-
JULIA_NUM_THREADS: "4"
111+
JULIA_NUM_THREADS: "1"
112112
agents:
113113
queue: "juliaecosystem"
114114
sandbox_capable: "true"
115115
os: linux
116116
arch: x86_64
117-
command: "git clone https://github.com/JuliaParallel/DTables.jl.git ; julia -t4 -e 'using Pkg; Pkg.activate(\"DTables.jl\"); Pkg.develop(;path=\".\"); Pkg.instantiate(); Pkg.test()'"
117+
command: "git clone https://github.com/JuliaParallel/DTables.jl.git ; julia -t1 -e 'using Pkg; Pkg.activate(\"DTables.jl\"); Pkg.develop(;path=\".\"); Pkg.instantiate(); Pkg.test()'"

src/sch/Sch.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -935,7 +935,7 @@ function finish_task!(ctx, state, node, thunk_failed)
935935
if haskey(state.waiting_data, node) && isempty(state.waiting_data[node])
936936
delete!(state.waiting_data, node)
937937
end
938-
evict_all_chunks!(ctx, to_evict)
938+
# evict_all_chunks!(ctx, to_evict)
939939
end
940940

941941
function delete_unused_tasks!(state)

0 commit comments

Comments
 (0)