Skip to content

Example job for use in other repository #22

Example job for use in other repository

Example job for use in other repository #22

name : Example job for use in other repository
on: [workflow_dispatch]
jobs:
examples-test:
runs-on: ubuntu-latest
container: openmodelica/openmodelica:v1.22.1-minimal
steps:
- name: Install dependencies
run: |
apt-get -qq update
apt-get -qq --no-install-recommends install python3 python3-pip git
pip install numpy pandas
- name: Install Modelica STL 4.0.0
run: |
echo "installPackage(Modelica, \"4.0.0+maint.om\", exactMatch=true);" > installModelicaStl.mos && omc installModelicaStl.mos
- name: Install MoPyRegtest with tag v0.5.0
run: |
git clone https://github.com/pstelzig/MoPyRegtest.git mopyregtest
cd mopyregtest
git checkout v0.5.0
pip3 install --user .
- name: Run regression test examples
run: |
cd mopyregtest/examples
python3 -m unittest
- name: Run test generation examples with mopyregtest command line tool
run: |
cd mopyregtest/examples/generate_tests
/github/home/.local/bin/mopyregtest generate \
--metric=Lp_dist --tol=1.25e-5 \
./gen_tests BlocksLpDist_from_cli \
~/".openmodelica/libraries/Modelica 4.0.0+maint.om/" \
Modelica.Blocks.Sources.Sine,Modelica.Blocks.Sources.ExpSine,Modelica.Blocks.Sources.Step
cd gen_tests
python3 test_blockslpdist_from_cli.py
- name: Run test generation examples with script
run: |
cd mopyregtest/examples/generate_tests
python3 gentests_modelica_blocks_sources.py
cd gen_tests
python3 test_blocksabsdistptwise_from_script.py
python3 test_blocksuserdef_from_script.py
- name: Run CSV file comparison with mopyregtest command line tool
run: |
/github/home/.local/bin/mopyregtest compare \
--metric=Lp_dist \
--tol=0.015 \
--validated-cols=y \
--fill-in-method=interpolate \
./mopyregtest/examples/test_user_defined_metrics/references/SineNoisy_res.csv \
./mopyregtest/examples/test_user_defined_metrics/references/Sine_res.csv