Skip to content

Commit 3bcaf22

Browse files
committed
Remove test on Julia nightly and attempt to fix test on MacOS
Test with Julia nightly removed because it fails to often.
1 parent c7b7823 commit 3bcaf22

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
using Pkg
2+
Pkg.activate(temp=true)
3+
Pkg.add("Conda")
4+
import Conda
5+
Conda.add("root=6.32.8")
6+
println(joinpath(Conda.ROOTENV, "bin"))

.github/workflows/test-linux.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
matrix:
1919
version:
2020
- '1.10'
21-
- 'nightly'
2221
os:
2322
- ubuntu-latest
2423
# - macOS-latest

.github/workflows/test-macos.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,11 @@ jobs:
1818
matrix:
1919
version:
2020
- '1.10'
21-
- 'nightly'
2221
os:
2322
# - ubuntu-latest
2423
- macOS-latest
2524
arch:
26-
- x64
25+
- aarch64
2726
steps:
2827
- uses: actions/checkout@v3
2928
with:
@@ -32,5 +31,9 @@ jobs:
3231
with:
3332
version: ${{ matrix.version }}
3433
arch: ${{ matrix.arch }}
34+
- name: Install ROOT
35+
run: |
36+
CONDA_BINDIR="`julia .github/workflows/install_root_macos.jl`"
37+
echo source \"$CONDA_BINDIR/activate\" >> "$GITHUB_ENV"
3538
- uses: julia-actions/julia-buildpkg@latest
3639
- uses: julia-actions/julia-runtest@latest

0 commit comments

Comments
 (0)