Skip to content

Commit 265e21b

Browse files
authored
Merge pull request #2671 from Shaikh-Ubaid/ci
CI: Install Miniconda
2 parents 4921160 + 5b24809 commit 265e21b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
branches:
1111
- main
1212
env:
13-
MACOSX_DEPLOYMENT_TARGET: 12.0
13+
MACOSX_DEPLOYMENT_TARGET: 14.0
1414

1515
jobs:
1616
Build:
@@ -37,6 +37,7 @@ jobs:
3737

3838
- uses: conda-incubator/setup-miniconda@v2
3939
with:
40+
miniconda-version: "latest"
4041
auto-update-conda: true
4142
environment-file: ci/environment.yml
4243
python-version: ${{ matrix.python-version }}
@@ -50,7 +51,7 @@ jobs:
5051
- name: Install Linux / macOS Conda Packages
5152
if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
5253
shell: bash -e -l {0}
53-
run: conda install bison=3.4
54+
run: conda install bison=3.4 nodejs=18
5455

5556
- name: Conda info
5657
shell: bash -e -l {0}
@@ -86,7 +87,7 @@ jobs:
8687
if: contains(matrix.os, 'windows')
8788
shell: cmd
8889
run: |
89-
set CONDA_INSTALL_LOCN=C:\\Miniconda
90+
set CONDA_INSTALL_LOCN=C:\\Miniconda3
9091
call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
9192
call conda activate test
9293
set LFORTRAN_CMAKE_GENERATOR=Ninja
@@ -106,7 +107,7 @@ jobs:
106107
if: contains(matrix.os, 'windows')
107108
shell: cmd
108109
run: |
109-
set CONDA_INSTALL_LOCN=C:\\Miniconda
110+
set CONDA_INSTALL_LOCN=C:\\Miniconda3
110111
call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
111112
call conda activate test
112113
set LFORTRAN_CMAKE_GENERATOR=Ninja

0 commit comments

Comments
 (0)