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:
4242 - name : CMake
4343 run : |
4444 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
4646 cmake -B build
4747 - name : Build
4848 run : VERBOSE=true make -C build -j `nproc`
49- - name : Test- Matrix
49+ - name : Matrix Tests
5050 run : ctest --test-dir ./build/test/bash
51- - name : Install- Julia
51+ - name : Install Julia
5252 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
5658 run : ctest --test-dir ./build/test/julia
You can’t perform that action at this time.
0 commit comments