Skip to content

Commit

Permalink
[wip] Windows workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jnbrunet committed Mar 31, 2022
1 parent f52a169 commit a8d75dd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 222 deletions.
222 changes: 0 additions & 222 deletions .github/workflows/macos.yml

This file was deleted.

9 changes: 9 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
include:
- sofa_version: master
PYTHON_VERSION: 3.8
EIGEN_VERSION: 3.4
env:
SOFA_VERSION: ${{ matrix.sofa_version }}
SOFA_ROOT: ${{ format('{0}/sofa', github.workspace) }}
Expand Down Expand Up @@ -46,7 +47,14 @@ jobs:
python-version: ${{ matrix.PYTHON_VERSION }}

# Eigen3
- name: cache eigen
uses: actions/cache@v2
id: cache-eigen
with:
path: ${{ github.workspace }}/eigen
key: eigen-${{ matrix.EIGEN_VERSION }}-windows
- name: Install Eigen
if: steps.cache-eigen.outputs.cache-hit != 'true'
shell: bash
run: |
git clone --depth 1 -b 3.4 https://gitlab.com/libeigen/eigen.git eigen_src
Expand All @@ -71,6 +79,7 @@ jobs:
key: boost-1.69.0-windows

- name: Install Boost
if: steps.cache-Boost.outputs.cache-hit != 'true'
run: |
$BOOST_MAJOR = 1
$BOOST_MINOR = 69
Expand Down

0 comments on commit a8d75dd

Please sign in to comment.