Skip to content

Commit

Permalink
Add Windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanwweber committed Feb 10, 2020
1 parent 96c62e3 commit 3ce14bf
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,21 @@ jobs:
run: python3 `which scons` test
- name: Run Test Problems
run: python3 `which scons` test_problems

windows-latest:
name: Test on latest Windows version
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
name: Checkout the repository
- name: Install conda dependencies
run: |
eval "$(conda shell.bash hook)";
conda activate;
conda info;
conda install scons numpy ruamel_yaml cython libboost;
- name: Build Cantera
run: |
eval "$(conda shell.bash hook)";
conda activate;
scons build boost_inc_dir=%CONDA%/Library/Include -j2;

0 comments on commit 3ce14bf

Please sign in to comment.