File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -42,15 +42,17 @@ jobs:
42
42
- name : CMake
43
43
run : |
44
44
sudo apt-get update
45
- sudo apt-get install libhdf5-dev $CXX $CC
45
+ sudo apt-get install libhdf5-dev gcc-12 g++-12 clang
46
46
cmake -B build
47
47
- name : Build
48
48
run : VERBOSE=true make -C build -j `nproc`
49
- - name : Test- Matrix
49
+ - name : Matrix Tests
50
50
run : ctest --test-dir ./build/test/bash
51
- - name : Install- Julia
51
+ - name : Install Julia
52
52
run : curl -fsSL https://install.julialang.org | sh -s -- -y
53
- - name : Install-Finch
54
- run : julia -e 'using Pkg; Pkg.add("Finch")'
55
- - name : Test-Tensor
53
+ - name : Disable Julia precompilation
54
+ run : julia -e 'using PrecompileTools, Preferences; set_preferences!(PrecompileTools, "precompile_workloads" => false; force=true)'
55
+ - name : Install Julia Packages
56
+ run : julia -e 'using Pkg; Pkg.add(["Finch", "HDF5"])'
57
+ - name : Tensor Tests
56
58
run : ctest --test-dir ./build/test/julia
You can’t perform that action at this time.
0 commit comments