Skip to content

Commit

Permalink
comment out redundant workaround in check_registry.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ablaom committed Jan 9, 2024
1 parent 51c7714 commit 17aac20
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/check_registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
PYTHON: Conda
# remove next line (and others marked below) when
# JuliaAI/MLJScikitLearnInterface.jl#42 properly resolved
LD_LIBRARY_PATH: /home/runner/.julia/conda/3/lib
# LD_LIBRARY_PATH: /home/runner/.julia/conda/3/lib

steps:
- uses: actions/checkout@v2
Expand All @@ -45,14 +45,14 @@ jobs:

# remove next eight lines (and one other marked above) when
# JuliaAI/MLJScikitLearnInterface.jl#42 gets properly resolved
- name: "Install Conda"
run: julia -e 'using Pkg; Pkg.add("Conda");'
- name: "Install Scikit-learn"
run: |
julia -e 'using Conda; Conda.add("scikit-learn");'\
cd $LD_LIBRARY_PATH #just to check that the path is valid
#- name: "Install Conda"
# run: julia -e 'using Pkg; Pkg.add("Conda");'
#- name: "Install Scikit-learn"
# run: |
# julia -e 'using Conda; Conda.add("scikit-learn");'\
# cd $LD_LIBRARY_PATH #just to check that the path is valid

- run: julia -e 'using Pkg; Pkg.update()'
- run: julia -e 'using Pkg; Pkg.update()'
- run: julia -e 'using Pkg; Pkg.precompile()'
- run: julia -e 'using Pkg; Pkg.status()'
- run: julia -e 'using MLJModels; using Test; problems = MLJModels.check_registry(); @info("", length(problems), problems); @test(isempty(problems))'

0 comments on commit 17aac20

Please sign in to comment.