Skip to content

Commit

Permalink
Split for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed Jun 27, 2024
1 parent 01e79f0 commit 97f284e
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/ant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,23 @@ jobs:
- name: Build with Ant
run: ant jar

- name: Run some examples
- name: Run some examples & test with ant (non Win)
if: ${{ matrix.runs-on != 'windows-latest' }}
uses: coactions/setup-xvfb@v1
with:
run: |
./run.sh examples/l22_small.swc -exportnml1
./run.sh examples/l22_small.swc -exportnml2
- name: Test with Ant
uses: coactions/setup-xvfb@v1
with:
run: ant testnogui
# Test with
ant testnogui
- name: Validate generated NeuroML 2 files
- name: Run some examples & test with ant (Windows)
if: ${{ matrix.runs-on == 'windows-latest' }}
run: |
pip install pyneuroml
cd temp # where the NeuroML files get generated in the previous step
ls -alth
#pynml -validate *.nml
./run.sh examples/l22_small.swc -exportnml1
./run.sh examples/l22_small.swc -exportnml2
# Test with
ant testnogui

0 comments on commit 97f284e

Please sign in to comment.