Skip to content

Build static libs on Apple #1

Build static libs on Apple

Build static libs on Apple #1

Workflow file for this run

name: Windows
on: [push, pull_request]
jobs:
build:
name: MSVC
runs-on: 'windows-latest'
strategy:
fail-fast: true
matrix:
type: ['floating','fixed']
env:
BUILD_TYPE: ${{ matrix.type }}
steps:
- uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1
- uses: conda-incubator/setup-miniconda@v2
with:
channels: conda-forge
auto-update-conda: true
python-version: '3.8'
- name: Setup
shell: bash -l {0}
run: |
source ./scripts/ci/win/setup.sh
- name: CMake
shell: bash -l {0}
working-directory: ./build
run: |
source ../scripts/ci/win/cmake.sh
- name: Compile
shell: bash -l {0}
working-directory: ./build
run: |
source ../scripts/ci/win/compile.sh
- name: Paths
shell: bash -l {0}
run: |
echo "D:/a/entwine/entwine/build/bin" >> $GITHUB_PATH
- name: Test
shell: bash -l {0}
working-directory: ./build
run: |
source ../scripts/ci/win/test.sh