Skip to content

Commit

Permalink
Use powershell to build Windows packages
Browse files Browse the repository at this point in the history
  • Loading branch information
roomrys committed Sep 12, 2024
1 parent 40655b2 commit 72fb5bf
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build_tensorflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,14 @@ jobs:
conda info
conda list
- name: Build conda package
if: env.RUN_BUILD_JOB == 'true'
- name: Build conda package (${{ matrix.os }})
if: (${{ runner.os }} == 'Windows' ) && (env.RUN_BUILD_JOB == 'true')
shell: powershell
run: |
conda build --debug ${{ matrix.build-folder }} --output-folder build.tensorflow -c conda-forge
- name: Build conda package (${{ matrix.os }})
if: (${{ runner.os }} != 'Windows' ) && (env.RUN_BUILD_JOB == 'true')
shell: bash -l {0}
run: |
conda build --debug ${{ matrix.build-folder }} --output-folder build.tensorflow -c conda-forge
Expand Down

0 comments on commit 72fb5bf

Please sign in to comment.