Skip to content

Commit 521bd64

Browse files
committed
Go for the proper way of forcing a specific revision ; the previous one doesn't always work (was getting some PackageName#dev#main on the GH action side of things, instead of PackageName#dev), possibly causing issues
1 parent 029b543 commit 521bd64

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/downstream/test-all-benchmarks.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using Pkg
22
Pkg.activate(dirname(@__FILE__))
33
Pkg.develop(PackageSpec(path=dirname(dirname(@__DIR__))))
4-
Pkg.add(url="https://github.com/VEZY/PlantBiophysics.jl#dev")
5-
Pkg.add(url="https://github.com/PalmStudio/XPalm.jl#dev")
4+
Pkg.add(url="https://github.com/VEZY/PlantBiophysics.jl", rev="dev")
5+
Pkg.add(url="https://github.com/PalmStudio/XPalm.jl", rev="dev")
66
Pkg.resolve()
77
Pkg.instantiate()
88

0 commit comments

Comments
 (0)