From 17aac20bdb37bb90329472564cee962dd6183162 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Wed, 10 Jan 2024 08:52:07 +1300 Subject: [PATCH] comment out redundant workaround in check_registry.yml --- .github/workflows/check_registry.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check_registry.yml b/.github/workflows/check_registry.yml index ac3f5352..0851a6ad 100644 --- a/.github/workflows/check_registry.yml +++ b/.github/workflows/check_registry.yml @@ -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 @@ -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))'