From 1202e5bc743fbbabbb59df614f5acd75a173285a Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Sat, 4 Nov 2023 17:44:54 -0400 Subject: [PATCH 1/2] make include a relative path --- src/PNGFiles.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PNGFiles.jl b/src/PNGFiles.jl index 14fc249..48194b1 100644 --- a/src/PNGFiles.jl +++ b/src/PNGFiles.jl @@ -7,7 +7,7 @@ using IndirectArrays using OffsetArrays using libpng_jll -libpng_wrap_dir = joinpath(@__DIR__, "..", "gen", "libpng") +libpng_wrap_dir = joinpath("..", "gen", "libpng") using CEnum include(joinpath(libpng_wrap_dir, "libpng_api.jl")) From b67b7ca108d529f9b70de3e0613207275585ad6c Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Sat, 4 Nov 2023 17:45:15 -0400 Subject: [PATCH 2/2] debug loading --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cf474ab..491665d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,4 +35,6 @@ jobs: with: version: ${{ matrix.julia-version }} - uses: julia-actions/julia-runtest@latest + env: + JULIA_DEBUG: loading - uses: julia-actions/julia-processcoverage@v1