adding support for multiple sensor dfiles #352
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: RunExample | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.10'] | |
#include: | |
#- os: ubuntu-latest | |
#python-version: 3.10 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
- name: Install python dependencies | |
shell: bash -l {0} | |
run: | | |
pip install -r requirements.txt | |
- name: Run example | |
shell: bash -l {0} | |
run: | | |
oedisi build --system scenarios/docker_system.json | |
oedisi run | |
python post_analysis.py | |
- name: Archive logs | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: test_logs | |
path: | | |
*.png | |
build/*.log |