Bump the development version to 1.1.0-dev (#29) #238
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: windows-wheel-builder | |
on: [push, pull_request] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
defaults: | |
run: | |
shell: cmd /C CALL {0} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
COMMIT_ID: ${{ github.sha }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID_IAM_S3_UPLOADER }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY_IAM_S3_UPLOADER }} | |
jobs: | |
windows-wheel-builder: | |
name: Build and test Python wheels (Windows) | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- uses: mamba-org/provision-with-micromamba@v14 | |
with: | |
cache-downloads: true | |
cache-env: true | |
environment-name: dev | |
environment-file: ops/conda_env/dev.yml | |
- name: Display Conda env | |
run: | | |
micromamba info | |
micromamba list | |
- name: Build wheel | |
run: | | |
call ops/build-windows.bat | |
- name: Test wheel | |
run: | | |
call ops/test-win-python-wheel.bat |