Skip to content

Commit

Permalink
Removed duplicate env files for conda; moved into github dir
Browse files Browse the repository at this point in the history
  • Loading branch information
klingaard committed Jan 29, 2025
1 parent c966ade commit 45bed02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Cache conda deps
uses: actions/cache@v3
with:
key: ${{ matrix.os }}-${{ matrix.BUILD_TYPE }}-${{ matrix.COMPILER }}-conda-${{ hashFiles('conda/environment.yml') }}
key: ${{ matrix.os }}-${{ matrix.BUILD_TYPE }}-${{ matrix.COMPILER }}-conda-${{ hashFiles('.github/workflows/conda/environment.yml') }}
path: /usr/share/miniconda/envs/riscv_perf_model # Default path for conda

# Setup CCache to cache builds
Expand All @@ -66,7 +66,7 @@ jobs:
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
$CONDA/bin/conda config --set channel_priority strict
$CONDA/bin/conda env update --file ${{ github.workspace }}/conda/environment.yml
$CONDA/bin/conda env update --file ${{ github.workspace }}/.github/workflows/conda/environment.yml
$CONDA/bin/conda init bash
# Build
Expand Down

0 comments on commit 45bed02

Please sign in to comment.