File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -22,17 +22,26 @@ jobs:
22
22
run : |
23
23
import Pkg
24
24
Pkg.add("JuliaFormatter")
25
- - run : julia --project=. -e 'using Pkg; pkg"instantiate"; pkg"update"; pkg"precompile"; using Clang; Clang.JLLEnvs.get_system_includes()'
25
+ - name : Instantiate dependencies
26
+ shell : julia --project=. --color=yes {0}
27
+ run : |
28
+ using Pkg
29
+ Pkg.instantiate()
30
+ Pkg.precompile()
31
+ using Clang
32
+ Clang.JLLEnvs.get_system_includes()
26
33
working-directory : ./deps/ReactantExtra
27
34
env :
28
35
JULIA_DEPOT_PATH : ${{ runner.temp }}/julia_depot
29
- - run : julia --project=. make-bindings.jl
36
+ - name : Generate MLIR Bindings
37
+ run : julia --project=. --color=yes make-bindings.jl
30
38
working-directory : ./deps/ReactantExtra
31
39
env :
32
40
JULIA_DEPOT_PATH : ${{ runner.temp }}/julia_depot
33
41
- run : |
34
42
chmod -R u+rw ./src/mlir/Dialects/
35
43
chmod u+rw ./src/mlir/libMLIR_h.jl
44
+ git config core.fileMode false
36
45
- name : Format code
37
46
shell : julia --color=yes {0}
38
47
run : |
You can’t perform that action at this time.
0 commit comments