Skip to content

Commit

Permalink
Also update in main
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
chryswoods committed Dec 31, 2023
1 parent 16421d9 commit cf143a8
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/choose_branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@ jobs:
SIRE_SILENT_PHONEHOME: 1
REPO: "${{ github.repository }}"
steps:
# Need to install and use VS 2017 for conda-compliant builds
- name: Set up Visual Studio 2017 Build Tools (required for Python modules)
run: |
choco install visualstudio2017-workload-vctools
if: matrix.platform.name == 'windows'
#
- uses: conda-incubator/setup-miniconda@v2
with:
Expand All @@ -62,6 +57,11 @@ jobs:
miniforge-version: latest
miniforge-variant: Mambaforge
use-mamba: true
# Need to install and use VS 2017 for conda-compliant builds
- name: Set up Visual Studio 2017 Build Tools (required for Python modules)
run: |
mamba install -y -c conda-forge vs2017_win-64
if: matrix.platform.name == 'windows'
#
- name: Clone the desired branch
run: git clone https://github.com/${{ env.REPO }} -b ${{ github.event.inputs.branch }} sire
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/devel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,6 @@ jobs:
SIRE_SILENT_PHONEHOME: 1
REPO: "${{ github.repository }}"
steps:
# Need to install and use VS 2017 for conda-compliant builds
- name: Set up Visual Studio 2017 Build Tools (required for Python modules)
run: |
choco install visualstudio2017-workload-vctools
if: matrix.platform.name == 'windows'
#
- uses: conda-incubator/setup-miniconda@v2
with:
Expand All @@ -60,6 +55,11 @@ jobs:
miniforge-version: latest
miniforge-variant: Mambaforge
use-mamba: true
# Need to install and use VS 2017 for conda-compliant builds
- name: Set up Visual Studio 2017 Build Tools (required for Python modules)
run: |
mamba install -y -c conda-forge vs2017_win-64
if: matrix.platform.name == 'windows'
#
- name: Clone the devel branch (push to devel)
run: git clone https://github.com/${{ env.REPO }} sire
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@ jobs:
SIRE_SILENT_PHONEHOME: 1
REPO: "${{ github.event.pull_request.head.repo.full_name || github.repository }}"
steps:
# Need to install and use VS 2017 for conda-compliant builds
- name: Set up Visual Studio 2017 Build Tools (required for Python modules)
run: |
choco install visualstudio2017-workload-vctools
if: matrix.platform.name == 'windows'
#
- uses: conda-incubator/setup-miniconda@v2
with:
Expand All @@ -53,6 +48,11 @@ jobs:
miniforge-version: latest
miniforge-variant: Mambaforge
use-mamba: true
# Need to install and use VS 2017 for conda-compliant builds
- name: Set up Visual Studio 2017 Build Tools (required for Python modules)
run: |
mamba install -y -c conda-forge vs2017_win-64
if: matrix.platform.name == 'windows'
#
- name: Clone the main branch (push to main)
run: git clone -b main https://github.com/openbiosim/sire sire
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,6 @@ jobs:
SIRE_SILENT_PHONEHOME: 1
REPO: "${{ github.event.pull_request.head.repo.full_name || github.repository }}"
steps:
# Need to install and use VS 2017 for conda-compliant builds
- name: Set up Visual Studio 2017 Build Tools (required for Python modules)
run: |
choco install visualstudio2017-workload-vctools
if: matrix.platform.name == 'windows'
#
- uses: conda-incubator/setup-miniconda@v2
with:
Expand All @@ -59,6 +54,11 @@ jobs:
miniforge-version: latest
miniforge-variant: Mambaforge
use-mamba: true
# Need to install and use VS 2017 for conda-compliant builds
- name: Set up Visual Studio 2017 Build Tools (required for Python modules)
run: |
mamba install -y -c conda-forge vs2017_win-64
if: matrix.platform.name == 'windows'
#
- name: Clone the feature branch (pull request to devel)
run: git clone -b ${{ github.head_ref }} --single-branch https://github.com/${{ env.REPO }} sire
Expand Down

0 comments on commit cf143a8

Please sign in to comment.