We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d50efe commit 139ec78Copy full SHA for 139ec78
action.yml
@@ -10,6 +10,9 @@ inputs:
10
project:
11
description: 'Value passed to the --project flag. The default value is the repository root: "@."'
12
default: '@.'
13
+ precompile:
14
+ description: 'Whether to allow auto-precompilation (via the `JULIA_PKG_PRECOMPILE_AUTO` env var). Options: yes | no. Default value: no.'
15
+ default: 'no'
16
17
runs:
18
using: 'composite'
@@ -33,3 +36,5 @@ runs:
33
36
34
37
- 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'
35
38
shell: bash
39
+ env:
40
+ JULIA_PKG_PRECOMPILE_AUTO: "${{ inputs.precompile }}"
0 commit comments