Skip to content

Commit f75e1b3

Browse files
authored
Merge pull request #127 from timholy/teh/version2
Slim down to SnoopCompile and SnoopCompileCore
2 parents d72340b + f956d20 commit f75e1b3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+69
-2648
lines changed

.github/workflows/Documenter.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ jobs:
1818
- uses: julia-actions/setup-julia@latest
1919
with:
2020
version: nightly
21-
- run: julia --project -e 'using Pkg; Pkg.develop([PackageSpec(path="SnoopCompileCore"),
22-
PackageSpec(path="SnoopCompileAnalysis"),
23-
PackageSpec(path="SnoopCompileBot")])'
21+
- run: julia --project -e 'using Pkg; Pkg.develop([PackageSpec(path="SnoopCompileCore")])'
2422
- uses: julia-actions/julia-buildpkg@latest
2523
- uses: julia-actions/julia-docdeploy@releases/v1
2624
env:

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@ jobs:
3030
with:
3131
version: ${{ matrix.version }}
3232
arch: ${{ matrix.arch }}
33-
- run: julia --project -e 'using Pkg; Pkg.develop([PackageSpec(path="SnoopCompileCore"),
34-
PackageSpec(path="SnoopCompileAnalysis"),
35-
PackageSpec(path="SnoopCompileBot")])'
33+
- run: julia --project -e 'using Pkg; Pkg.develop([PackageSpec(path="SnoopCompileCore")])'
3634
- uses: julia-actions/julia-buildpkg@latest
3735
- uses: julia-actions/julia-runtest@latest
3836

.github/workflows/workflow_ci.yml

Lines changed: 0 additions & 157 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,3 @@
22
*.jl.*.cov
33
*.jl.mem
44
Manifest.toml
5-
SnoopCompileBot/test/*/deps/SnoopCompile/precompile/*
6-
SnoopCompileBot/test/*/src/precompile_includer.jl

Project.toml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
name = "SnoopCompile"
22
uuid = "aa65fe97-06da-5843-b5b1-d5d13cad87d2"
33
author = ["Tim Holy <[email protected]>"]
4-
version = "1.7.2"
4+
version = "2.0.0"
55

66
[deps]
7+
Cthulhu = "f68482b8-f384-11e8-15f7-abe071a5a75f"
8+
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
79
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
810
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
9-
SnoopCompileAnalysis = "9ea4277c-da97-4c3a-afb0-537c066769de"
10-
SnoopCompileBot = "1d5e0e55-7d74-4714-b8d8-efa80e938cf7"
1111
SnoopCompileCore = "e2b509da-e806-4183-be48-004708413034"
1212

1313
[compat]
14-
SnoopCompileAnalysis = "~1.7.2"
15-
SnoopCompileBot = "~1.7.2"
16-
SnoopCompileCore = "~1.7.2"
14+
Cthulhu = "1.2"
15+
OrderedCollections = "1"
16+
SnoopCompileCore = "~2.0.0"
1717
julia = "1"
1818

1919
[extras]
@@ -22,11 +22,10 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
2222
FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
2323
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
2424
JLD = "4138dd39-2aa7-5051-a626-17a0bb65d9c8"
25-
MatLang = "05b439c0-bb3c-11e9-1d8d-1f0a9ebca87a"
2625
MethodAnalysis = "85b6ec6f-f7df-4429-9514-a64bcd9ee824"
2726
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
2827
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
2928
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3029

3130
[targets]
32-
test = ["ColorTypes", "Documenter", "FixedPointNumbers", "InteractiveUtils", "JLD", "MatLang", "MethodAnalysis", "Pkg", "SparseArrays", "Test"]
31+
test = ["ColorTypes", "Documenter", "FixedPointNumbers", "InteractiveUtils", "JLD", "MethodAnalysis", "Pkg", "SparseArrays", "Test"]

SnoopCompileAnalysis/LICENSE.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

SnoopCompileAnalysis/Project.toml

Lines changed: 0 additions & 14 deletions
This file was deleted.

SnoopCompileAnalysis/README.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

SnoopCompileAnalysis/src/SnoopCompileAnalysis.jl

Lines changed: 0 additions & 28 deletions
This file was deleted.

SnoopCompileBot/LICENSE.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)