Skip to content

Commit

Permalink
Disable autoprecompile by default (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth committed Dec 17, 2022
1 parent 6d50efe commit 139ec78
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ inputs:
project:
description: 'Value passed to the --project flag. The default value is the repository root: "@."'
default: '@.'
precompile:
description: 'Whether to allow auto-precompilation (via the `JULIA_PKG_PRECOMPILE_AUTO` env var). Options: yes | no. Default value: no.'
default: 'no'

runs:
using: 'composite'
Expand All @@ -33,3 +36,5 @@ runs:

- run: julia --color=yes --project=${{ inputs.project }} -e 'using Pkg; if VERSION >= v"1.1.0-rc1"; Pkg.build(verbose=true); else Pkg.build(); end'
shell: bash
env:
JULIA_PKG_PRECOMPILE_AUTO: "${{ inputs.precompile }}"

0 comments on commit 139ec78

Please sign in to comment.