Skip to content

Commit 9f05323

Browse files
committed
cleanup
1 parent 8997594 commit 9f05323

File tree

7 files changed

+4
-16
lines changed

7 files changed

+4
-16
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,9 @@ jobs:
2626
# Runs a single command using the runners shell
2727
- name: Unit Tests
2828
run: |
29-
julia --project -e 'using Pkg; Pkg.develop(PackageSpec(name="DirectedAcyclicGraphs")); Pkg.develop(PackageSpec(name="LogicCircuits")); Pkg.instantiate(); Pkg.build();'
3029
julia --project --check-bounds=yes --depwarn=yes -e 'import Pkg; Pkg.test(; coverage=true)'
3130
3231
- name: Codecov Upload
3332
run: |
3433
julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder());'
3534
36-
# - name: Docs Build
37-
# env:
38-
# DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
39-
# run: |
40-
# sudo apt-get -qq update
41-
# sudo apt install -y pdf2svg texlive-latex-base texlive-binaries texlive-pictures texlive-latex-extra texlive-luatex
42-
# luatex -v
43-
# pdflatex -v
44-
# julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(name="LogicCircuits")); Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate();'
45-
# julia --project=docs/ docs/make.jl
46-

.github/workflows/deploy_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ jobs:
3434
sudo apt install -y pdf2svg texlive-latex-base texlive-binaries texlive-pictures texlive-latex-extra texlive-luatex
3535
luatex -v
3636
pdflatex -v
37-
julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(name="DirectedAcyclicGraphs")); Pkg.develop(PackageSpec(name="LogicCircuits")); Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate();'
37+
julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(name="LogicCircuits")); Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate();'
3838
julia --project=docs/ docs/make.jl

.github/workflows/one_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: |
2828
pwd
2929
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
30-
julia -e 'using Pkg; Pkg.develop(PackageSpec(name="LogicCircuits")); Pkg.develop(PackageSpec(path=".")); Pkg.instantiate(); Pkg.build();'
31-
julia --project=test -e 'using Pkg; Pkg.develop(PackageSpec(name="LogicCircuits")); Pkg.develop(PackageSpec(path=".")); Pkg.instantiate(); Pkg.build();'
30+
julia -e 'using Pkg; Pkg.develop(PackageSpec(path=".")); Pkg.instantiate(); Pkg.build();'
31+
julia --project=test -e 'using Pkg; Pkg.develop(PackageSpec(path=".")); Pkg.instantiate(); Pkg.build();'
3232
julia --project=test --check-bounds=yes --depwarn=yes ${{ github.event.inputs.testFile }}
3333

.github/workflows/slow_tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ jobs:
3131
# Runs a single command using the runners shell
3232
- name: Unit Tests
3333
run: |
34-
julia --project -e 'using Pkg; Pkg.develop(PackageSpec(name="LogicCircuits")); Pkg.instantiate(); Pkg.build();'
3534
julia --project=test -e 'using Pkg; Pkg.instantiate(); Pkg.build(); Pkg.precompile();'
3635
julia --project=test -e 'using Pkg; Pkg.develop("ProbabilisticCircuits");'
3736
julia --project=test --check-bounds=yes --depwarn=yes test/_manual_/aqua_test.jl

Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Clustering = "0.14"
3939
DataFrames = "0.21, 0.22, 1.2"
4040
DataStructures = "0.17, 0.18"
4141
Distributions = "0.25"
42+
DirectedAcyclicGraphs = "0.1.1"
4243
Graphs = "1.4"
4344
Lerche = "0.5"
4445
LogicCircuits = "0.3"

0 commit comments

Comments
 (0)