From 11c35987a3c8f91a2083e964a32c34bb32ae2206 Mon Sep 17 00:00:00 2001 From: Stephen L Arnold Date: Fri, 8 Dec 2023 18:08:12 -0800 Subject: [PATCH] chg: revert to latest action and package versions * leave default PY_VER but do not specify version for action * use proper activate command workflow in build step * add some path and prefix introspection, try find/which * bump windows ci runner version, list env, cat dirent.h * use proper compier template in env deps Signed-off-by: Stephen L Arnold --- .github/workflows/conda-dev.yml | 27 +++++++++++++++------------ environment.devenv.yml | 4 ++-- 2 files changed, 17 insertions(+), 14 deletions(-) diff --git a/.github/workflows/conda-dev.yml b/.github/workflows/conda-dev.yml index 6f492258c1..8977b5eeb4 100644 --- a/.github/workflows/conda-dev.yml +++ b/.github/workflows/conda-dev.yml @@ -12,13 +12,10 @@ jobs: build: name: abc ${{ matrix.python-version }} ${{ matrix.os }} runs-on: ${{ matrix.os }} - defaults: - run: - shell: bash -el {0} strategy: fail-fast: false matrix: - os: ['ubuntu-22.04', 'ubuntu-20.04', 'macOS-11', 'windows-2019'] + os: ['ubuntu-22.04', 'ubuntu-20.04', 'macOS-11', 'windows-2022'] python-version: ['3.11'] use_namespace: [false, true] include: @@ -31,13 +28,13 @@ jobs: - os: 'macOS-11' generator: 'Ninja' build_type: 'Release' - - os: 'windows-2019' + - os: 'windows-2022' generator: 'Ninja' build_type: 'Release' extra_args: '-DABC_USE_NO_PTHREADS=ON -DABC_USE_NO_READLINE=ON' env: OS: ${{ matrix.os }} - PYTHON: ${{ matrix.python-version }} + PY_VER: ${{ matrix.python-version }} PYTHONIOENCODING: utf-8 CMAKE_ARGS: ${{ matrix.use_namespace && '-DABC_USE_NAMESPACE=xxx' || '' }} @@ -54,36 +51,42 @@ jobs: uses: actions/cache@v3 env: # Increase this value to reset cache if environment.devenv.yml has not changed - CACHE_NUMBER: 1 + CACHE_NUMBER: 2 with: path: ~/conda_pkgs_dir key: ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ hashFiles('environment.devenv.yml') }} - - uses: conda-incubator/setup-miniconda@v2 + - uses: conda-incubator/setup-miniconda@v3 with: auto-update-conda: true auto-activate-base: true - python-version: ${{ matrix.python-version }} + activate-environment: '' channels: conda-forge channel-priority: flexible - name: Configure condadev environment + shell: bash -l {0} env: PY_VER: ${{ matrix.python-version }} run: | conda config --set always_yes yes --set changeps1 no - conda install conda-devenv=2.1.1 + conda install conda-devenv=3.2.0 conda info conda list - name: Build and test + shell: bash -l {0} env: PY_VER: ${{ matrix.python-version }} run: | conda devenv + conda activate abc conda info --envs - source activate abc - conda list dirent + conda list + echo $CONDA_PREFIX + find $CONDA_PREFIX -maxdepth 2 -type d -name bin + cat $(find $CONDA_PREFIX -maxdepth 5 -type f -name dirent.h) || true + echo $PATH ctest --build-generator "${{ matrix.generator }}" \ --build-and-test . build \ --build-options ${CMAKE_ARGS} ${{ matrix.extra_args }} \ diff --git a/environment.devenv.yml b/environment.devenv.yml index 3098713675..9d4eec7dc2 100644 --- a/environment.devenv.yml +++ b/environment.devenv.yml @@ -4,8 +4,8 @@ dependencies: - python ={{ get_env("PY_VER", default="3.10") }} - cmake>=3.18 - ninja - - c-compiler - - cxx-compiler + - {{ compiler('c') }} + - {{ compiler('cxx') }} - make # [unix] - readline=8.1 # [unix] - zlib