From 04370c87a5fd2bf452bf0230919210e85664401b Mon Sep 17 00:00:00 2001 From: OkonSamuel Date: Mon, 20 Feb 2023 21:29:29 +0100 Subject: [PATCH 1/4] check code --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e1b736b..ff063e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI env: PYTHON: Conda # remove next line (and others marked below) when #42 properly resolved - LD_LIBRARY_PATH: /home/runner/.julia/conda/3/lib + LD_LIBRARY_PATH: /home/runner/.julia/conda/3/ on: pull_request: @@ -50,7 +50,7 @@ jobs: - name: "Install Conda" run: julia -e 'using Pkg; Pkg.add("Conda");' - name: "Install Scikit-learn" - run: cd $LD_LIBRARY_PATH + run: cd $LD_LIBRARY_PATH && ls - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v1 From 0a8242dc308dd068d61f36039787a10f92af162e Mon Sep 17 00:00:00 2001 From: OkonSamuel Date: Mon, 20 Feb 2023 21:35:16 +0100 Subject: [PATCH 2/4] check code --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff063e6..53e9576 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI env: PYTHON: Conda # remove next line (and others marked below) when #42 properly resolved - LD_LIBRARY_PATH: /home/runner/.julia/conda/3/ + LD_LIBRARY_PATH: /home/runner/.julia/conda/3/x86_64/ on: pull_request: From 643f645b180c9fe256ff44fe7e4ae23bd293c229 Mon Sep 17 00:00:00 2001 From: OkonSamuel Date: Mon, 20 Feb 2023 21:40:43 +0100 Subject: [PATCH 3/4] check code --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53e9576..32e7b1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,8 +2,8 @@ name: CI env: PYTHON: Conda -# remove next line (and others marked below) when #42 properly resolved - LD_LIBRARY_PATH: /home/runner/.julia/conda/3/x86_64/ + # remove next line (and others marked below) when #42 properly resolved + LD_LIBRARY_PATH: /home/runner/.julia/conda/3/x86_64/lib on: pull_request: @@ -50,7 +50,7 @@ jobs: - name: "Install Conda" run: julia -e 'using Pkg; Pkg.add("Conda");' - name: "Install Scikit-learn" - run: cd $LD_LIBRARY_PATH && ls + run: cd $LD_LIBRARY_PATH - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v1 From acccbbad0ffeb31ad8e153e2e1390e304d94f0ba Mon Sep 17 00:00:00 2001 From: OkonSamuel Date: Mon, 20 Feb 2023 21:44:21 +0100 Subject: [PATCH 4/4] fix ci failure --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32e7b1f..079cc6f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,8 +2,8 @@ name: CI env: PYTHON: Conda - # remove next line (and others marked below) when #42 properly resolved - LD_LIBRARY_PATH: /home/runner/.julia/conda/3/x86_64/lib + # uncomment the line below when #42 comes up again + # LD_LIBRARY_PATH: /home/runner/.julia/conda/3/x86_64/lib on: pull_request: @@ -46,11 +46,11 @@ jobs: ${{ runner.os }}-test- ${{ runner.os }}- - uses: julia-actions/julia-buildpkg@v1 -# remove next four lines (and one other marked above) when #42 properly resolved - - name: "Install Conda" - run: julia -e 'using Pkg; Pkg.add("Conda");' - - name: "Install Scikit-learn" - run: cd $LD_LIBRARY_PATH +# uncomment the next four lines (and one other marked above) when #42 comes up again. + #- name: "Install Conda" + # run: julia -e 'using Pkg; Pkg.add("Conda");' + #- name: "Install Scikit-learn" + # run: cd $LD_LIBRARY_PATH - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v1