Skip to content

Commit 7da0df2

Browse files
committed
[WIP] Trying to identify the problem with julia 1.0
1 parent f5f9ba6 commit 7da0df2

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/UnitTestArm.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- name: Download Julia Binary
2424
run: >
2525
julia -e '
26+
println(DEPOT_PATH);
2627
using Pkg; Pkg.add("JSON"); using JSON;
2728
if "${{ matrix.julia-version }}" == "nightly";
2829
url = "https://julialangnightlies-s3.julialang.org/bin/linux/${{ matrix.arch }}/julia-latest-linux-${{ matrix.arch }}.tar.gz";
@@ -40,10 +41,10 @@ jobs:
4041
4142
- name: Extract Julia Files
4243
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
4748
4849
- uses: uraimo/[email protected]
4950
name: Unit Test
@@ -59,7 +60,7 @@ jobs:
5960
echo /home/runner/work/julia/lib > /etc/ld.so.conf.d/julia.conf
6061
mkdir -p /root/.julia/registries/General
6162
run: |
62-
julia -e 'using InteractiveUtils; versioninfo();'
63+
julia --compile=min -O0 -e 'using InteractiveUtils; versioninfo();'
6364
julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'
6465
- uses: julia-actions/julia-processcoverage@v1
6566
- uses: codecov/codecov-action@v4

0 commit comments

Comments
 (0)