diff --git a/.github/workflows/platforms_build.yml b/.github/workflows/platforms_build.yml index b10b145..c7f7e6e 100644 --- a/.github/workflows/platforms_build.yml +++ b/.github/workflows/platforms_build.yml @@ -28,7 +28,7 @@ jobs: - name: Prepare environment and install dependecies run: | - julia -e 'using Pkg; Pkg.add(Pkg.PackageSpec(;name="PackageCompiler", version="1.2.7")); Pkg.activate("."); Pkg.instantiate();' + julia -e 'using Pkg; Pkg.add(Pkg.PackageSpec(;name="PackageCompiler", version="2.0.6")); Pkg.activate("."); Pkg.instantiate();' - name: Cache dependencies uses: actions/cache@v1 diff --git a/bin/build.jl b/bin/build.jl index 12e8520..3e27d0b 100755 --- a/bin/build.jl +++ b/bin/build.jl @@ -7,4 +7,4 @@ out_path = length(ARGS) > 1 ? ARGS[1] : "Baysor"; baysor_path = length(ARGS) > 2 ? ARGS[2] : dirname(@__DIR__); Base.LOAD_PATH .= baysor_path -create_app(baysor_path, out_path; precompile_execution_file="$(baysor_path)/bin/precompile.jl") +create_app(baysor_path, out_path; precompile_execution_file="$(baysor_path)/bin/precompile.jl", include_lazy_artifacts=true)