handle duplicate density and parameter #812
Workflow file for this run
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: Tests Windows | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
update: true | |
install: base-devel flex bison gcc make diffutils mingw-w64-x86_64-toolchain mingw-w64-x86_64-ca-certificates | |
- name: Build Virus Macrophage project | |
run: | | |
make virus-macrophage-sample | |
make | |
- name: Run Virus Macrophage cell lines project | |
run: | | |
.\\virus-sample.exe | |
- name: Build PhysiBoSS cell lines project | |
run: | | |
make reset | |
make physiboss-cell-lines-sample | |
make clean | |
make | |
- name: Run PhysiBoSS cell lines project | |
run: | | |
.\\PhysiBoSS_Cell_Lines.exe | |
- name: Build PhysiMeSS project | |
run: | | |
make reset | |
make physimess-sample | |
make clean | |
make | |
- name: Run PhysiMeSS project | |
run: | | |
.\\project | |
.\\project config\\Fibre_Initialisation\\mymodel_initialisation.xml | |
.\\project config\\Cell_Fibre_Mechanics\\mymodel_rotating.xml | |