From 53bbc78b34003fe979df3bff97938d02912e0fc3 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sat, 1 May 2021 08:25:13 -0400 Subject: [PATCH 1/3] Where is Julia being installed? --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7eaea17..0ab20b9c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,7 @@ jobs: - uses: julia-actions/julia-buildpkg@latest - name: Clean up run: sudo rm -rf /opt + - run: julia -e "println(Sys.BINDIR)" - name: System info run: julia --project=. --color=yes -e "using BinaryBuilderBase; BinaryBuilderBase.versioninfo()" - uses: julia-actions/julia-runtest@latest From b0d80f21129aca67d40ecb2e55ccbbbba778d10b Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sat, 1 May 2021 08:27:47 -0400 Subject: [PATCH 2/3] Update ci.yml --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ab20b9c..fa828432 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,7 @@ jobs: - uses: julia-actions/julia-buildpkg@latest - name: Clean up run: sudo rm -rf /opt + - run: which -a julia - run: julia -e "println(Sys.BINDIR)" - name: System info run: julia --project=. --color=yes -e "using BinaryBuilderBase; BinaryBuilderBase.versioninfo()" From 35ff3292fa9cd614769c2224b9c82b7160e2e9c4 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sat, 1 May 2021 08:28:46 -0400 Subject: [PATCH 3/3] Update ci.yml --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa828432..2fd5bbfe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,10 +41,12 @@ jobs: steps: - uses: actions/checkout@v2 + - run: which -a julia - uses: julia-actions/setup-julia@v1 with: version: ${{ matrix.julia-version }} arch: x64 + - run: which -a julia - uses: julia-actions/julia-buildpkg@latest - name: Clean up run: sudo rm -rf /opt