Skip to content

Commit 24a379f

Browse files
committed
Remove Mac OS X (still doesn't work), add conda init and specify shell
1 parent e91da07 commit 24a379f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
os: [ubuntu-latest, macos-latest]
19-
python-version: [3.6, 3.7, 3.8]
18+
os: [ubuntu-latest]
2019

2120
steps:
2221
- uses: actions/checkout@v2
@@ -26,12 +25,19 @@ jobs:
2625
auto-update-conda: true
2726
python-version: ${{ matrix.python-version }}
2827

28+
- name: "Configure conda"
29+
shell: bash
30+
run: |
31+
conda init --all
32+
2933
- name: Conda install dependencies
34+
shell: bash
3035
run: |
3136
conda create -n root-nightly -y -c https://root.cern/download/conda-nightly/latest -c conda-forge root-nightly cmake pytest pytest-benchmark pytest-csv numpy numba
3237
conda activate root-nightly
3338
3439
- name: Configure and build
40+
shell: bash
3541
run: |
3642
mkdir -p build && cd build
3743
$CONDA/bin/cmake ..

0 commit comments

Comments
 (0)