From 88da7715b3792b47f5e0b8b3dbb83729fc755f85 Mon Sep 17 00:00:00 2001 From: "katarzyna.otylia.sikora@gmail.com" Date: Tue, 13 Aug 2024 09:43:10 +0200 Subject: [PATCH] gha --- .github/condaBuildCI.yml | 9 +++++++-- .github/workflows/conda-build.yml | 13 +++++++++---- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/.github/condaBuildCI.yml b/.github/condaBuildCI.yml index e1a472c76..94cb2111a 100644 --- a/.github/condaBuildCI.yml +++ b/.github/condaBuildCI.yml @@ -1,4 +1,9 @@ name: condaBuild_CI +channels: # write here the list of channels to look for your library dependencies + - uibcdf + - conda-forge + - default + dependencies: - - python >= 3.9 - - conda-build = 3.26.0 + - anaconda-client + - conda-build diff --git a/.github/workflows/conda-build.yml b/.github/workflows/conda-build.yml index 8f5f14d14..59dd813a9 100644 --- a/.github/workflows/conda-build.yml +++ b/.github/workflows/conda-build.yml @@ -15,13 +15,18 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: conda-incubator/setup-miniconda@v3 with: + fetch-depth: 0 + - name: Conda environment creation and activation + uses: conda-incubator/setup-miniconda@v3 + with: + python-version: 3.9 environment-file: .github/condaBuildCI.yml - activate-environment: condaBuild_CI - condarc-file: .github/condarc.yml - auto-update-conda: true + #activate-environment: condaBuild_CI + #condarc-file: .github/condarc.yml + auto-update-conda: false auto-activate-base: false + show-channel-urls: true # Builds the package using the standard configuration - name: buildSnakePipes run: |