File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 23
23
- name : Download Julia Binary
24
24
run : >
25
25
julia -e '
26
+ println(Sys.BINDIR);
26
27
using Pkg; Pkg.add("JSON"); using JSON;
27
28
if "${{ matrix.julia-version }}" == "nightly";
28
29
url = "https://julialangnightlies-s3.julialang.org/bin/linux/${{ matrix.arch }}/julia-latest-linux-${{ matrix.arch }}.tar.gz";
@@ -40,10 +41,10 @@ jobs:
40
41
41
42
- name : Extract Julia Files
42
43
run : |
43
- cd /tmp
44
- tar -xzf julia-aarch64.tar.gz -C /home/runner/work/
45
- mv /home/runner/work/ julia-*/ /home/runner/work/julia/
46
- rm julia-aarch64.tar.gz
44
+ mkdir -p /home/runner/work/julia/
45
+ tar -xf /tmp/ julia-aarch64.tar.gz --strip-components=1 - C /home/runner/work/julia /
46
+ rm /tmp/ julia-aarch64.tar.gz
47
+ ls /home/runner/.julia/registries/General
47
48
48
49
49
50
name : Unit Test
59
60
echo /home/runner/work/julia/lib > /etc/ld.so.conf.d/julia.conf
60
61
mkdir -p /root/.julia/registries/General
61
62
run : |
62
- julia -e 'using InteractiveUtils; versioninfo();'
63
+ julia --compile=min -O0 - e 'using InteractiveUtils; versioninfo();'
63
64
julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'
64
65
- uses : julia-actions/julia-processcoverage@v1
65
66
- uses : codecov/codecov-action@v4
You can’t perform that action at this time.
0 commit comments