Skip to content

Commit

Permalink
Install vs2017
Browse files Browse the repository at this point in the history
  • Loading branch information
tpeulen committed Jan 25, 2025
1 parent d2a9b91 commit 7faa5d0
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- cron: "0 11 * * 1"

jobs:
build-linux:
build:
name: CondaBuild (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
Expand All @@ -28,6 +28,13 @@ jobs:
if: startsWith(matrix.os, 'macos')
run: build_tools/install_macos_sdk.sh

- name: Install Visual Studio 2017 (Windows only)
if: matrix.os == 'windows-latest'
run: |
choco install visualstudio2017buildtools --version=15.9.54 -y
choco install visualstudio2017-workload-vctools -y
setx PATH "%PATH%;C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build"
- name: Set up Conda
uses: conda-incubator/setup-miniconda@v3
with:
Expand All @@ -37,6 +44,8 @@ jobs:
channels: conda-forge,bioconda,tpeulen,defaults
channel-priority: true



- name: Display Conda Settings
shell: bash -el {0}
run: |
Expand Down

0 comments on commit 7faa5d0

Please sign in to comment.