File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -18,19 +18,19 @@ jobs:
18
18
with :
19
19
version : ${{ matrix.julia-version }}
20
20
- name : Install dependencies
21
- run : julia --project=@. -e 'using Pkg; Pkg.instantiate();'
21
+ run : julia --project -e 'using Pkg; Pkg.instantiate();'
22
22
- name : Add SnoopCompile and current package
23
- run : julia -e 'using Pkg; Pkg.add(PackageSpec(url = "https://github.com/aminya/ SnoopCompile.jl", rev ="packageSnooper") ); Pkg.develop(PackageSpec(; path=pwd()));'
24
- # - name: Install Test dependencies
25
- # run: julia -e 'using SnoopCompile; SnoopCompile.addtestdep()'
23
+ run : julia -e 'using Pkg; Pkg.add(" SnoopCompile" ); Pkg.develop(PackageSpec(; path=pwd()));'
24
+ - name : Install Test dependencies
25
+ run : julia -e 'using SnoopCompile; SnoopCompile.addtestdep()'
26
26
- name : Generating precompile files
27
27
run : julia --project=@. -e 'include("deps/SnoopCompile/snoopCompile.jl")'
28
28
- name : Running Benchmark
29
29
run : julia --project=@. -e 'include("deps/SnoopCompile/snoopBenchmark.jl")'
30
30
31
31
# https://github.com/marketplace/actions/create-pull-request
32
32
- name : Create Pull Request
33
- uses : peter-evans/create-pull-request@v2-beta
33
+ uses : peter-evans/create-pull-request@v2
34
34
with :
35
35
token : ${{ secrets.GITHUB_TOKEN }}
36
36
commit-message : Update precompile_*.jl file
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ using SnoopCompile
2
2
3
3
println (" loading infer benchmark" )
4
4
5
- @snoopiBenchBot " MatLang" using MatLang
5
+ @snoopiBench " MatLang" using MatLang
6
6
7
7
8
8
println (" examples infer benchmark" )
9
9
10
- @snoopiBenchBot " MatLang " begin
10
+ @snoopiBench " MahtLang " begin
11
11
using MatLang
12
12
examplePath = joinpath (dirname (dirname (pathof (MatLang))), " examples" )
13
13
# include(joinpath(examplePath,"Language_Fundamentals", "usage_Entering_Commands.jl"))
@@ -16,4 +16,6 @@ println("examples infer benchmark")
16
16
end
17
17
18
18
19
- @snoopiBenchBot " MatLang"
19
+ println (" tests infer benchmark" )
20
+
21
+ @snoopiBench " MatLang"
You can’t perform that action at this time.
0 commit comments