SciML / DiffEqBenchmarkServer.jl

Server behind the benchmarking bot @DiffEqBot for benchmarking scientific machine learning (SciML)
https://benchmarks.sciml.ai/
3 stars 2 forks source link

Remove benchmarked package after job #2

Closed kanav99 closed 5 years ago

kanav99 commented 5 years ago

As we work upon all the jobs in the same Julia environment, we need to remove the package we checked out after the job is done, or else the next job for some other repo will use this checked out branch instead of master. For eg -

  1. We benchmarked DiffEqBase on a branch A.
  2. Then after some time the master of DiffEqBase got changed.
  3. Now if we run OrdinaryDiffEq, it will use the checked out version of DiffEqBase.

This PR solves this issue. But we should use different environments for each job to solve this issue once for all. Already deployed to heroku.