Skip to content

Commit

Permalink
[CI] Export FFTWDIR variable in a different step
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Jul 25, 2022
1 parent 9fef25e commit fd2c3f2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,19 @@ jobs:
auto-update-conda: true
python-version: 3.9

- name: Install dependinces Windows
- name: Install dependencies Windows
if: runner.os == 'Windows'
shell: pwsh
run: |
conda install fftw cmake --yes
echo "FFTWDIR=C:\Miniconda\envs\test\Library" >> $GITHUB_ENV
- name: Export FFTW directory Windows
if: runner.os == 'Windows'
shell: bash
run: |
echo "FFTWDIR=C:\Miniconda\envs\test\Library" >> $GITHUB_ENV
- name: Create Build Environment
run: |
cmake -E make_directory ${{runner.workspace}}/build
Expand Down

0 comments on commit fd2c3f2

Please sign in to comment.