Skip to content

Commit

Permalink
Updated PackageCompiler version
Browse files Browse the repository at this point in the history
  • Loading branch information
VPetukhov committed Jun 30, 2022
1 parent c7db849 commit c54b025
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/platforms_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion bin/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit c54b025

Please sign in to comment.