From 15b3684e8fce6da7424321d84307b26237672b9e Mon Sep 17 00:00:00 2001 From: Shaikh Ubaid Date: Fri, 26 Apr 2024 23:55:07 +0530 Subject: [PATCH 1/4] CI: Install Miniconda --- .github/workflows/CI.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 891844a3d4..aa5793107e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -37,6 +37,7 @@ jobs: - uses: conda-incubator/setup-miniconda@v2 with: + miniconda-version: "latest" auto-update-conda: true environment-file: ci/environment.yml python-version: ${{ matrix.python-version }} From aa6c081048954f263be0dfc13bedde628b802ea1 Mon Sep 17 00:00:00 2001 From: Shaikh Ubaid Date: Sat, 27 Apr 2024 00:39:17 +0530 Subject: [PATCH 2/4] CI: Update conda location on windows --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index aa5793107e..91fba001c3 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -87,7 +87,7 @@ jobs: if: contains(matrix.os, 'windows') shell: cmd run: | - set CONDA_INSTALL_LOCN=C:\\Miniconda + set CONDA_INSTALL_LOCN=C:\\Miniconda3 call %CONDA_INSTALL_LOCN%\Scripts\activate.bat call conda activate test set LFORTRAN_CMAKE_GENERATOR=Ninja @@ -107,7 +107,7 @@ jobs: if: contains(matrix.os, 'windows') shell: cmd run: | - set CONDA_INSTALL_LOCN=C:\\Miniconda + set CONDA_INSTALL_LOCN=C:\\Miniconda3 call %CONDA_INSTALL_LOCN%\Scripts\activate.bat call conda activate test set LFORTRAN_CMAKE_GENERATOR=Ninja From 7d5e301c0357df50284f1fb6ee5da4be899c5c89 Mon Sep 17 00:00:00 2001 From: Shaikh Ubaid Date: Sat, 27 Apr 2024 02:13:11 +0530 Subject: [PATCH 3/4] CI: Update MACOSX_DEPLOYMENT_TARGET to 14.0 --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 91fba001c3..f0dd05ad8c 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -10,7 +10,7 @@ on: branches: - main env: - MACOSX_DEPLOYMENT_TARGET: 12.0 + MACOSX_DEPLOYMENT_TARGET: 14.0 jobs: Build: From 5b248091b45e46216f7c0074dc734c0ef72c5a3f Mon Sep 17 00:00:00 2001 From: Shaikh Ubaid Date: Sat, 27 Apr 2024 03:04:40 +0530 Subject: [PATCH 4/4] CI: Conda install nodejs=18 --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f0dd05ad8c..21492d7769 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -51,7 +51,7 @@ jobs: - name: Install Linux / macOS Conda Packages if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos') shell: bash -e -l {0} - run: conda install bison=3.4 + run: conda install bison=3.4 nodejs=18 - name: Conda info shell: bash -e -l {0}