Skip to content

Commit fb39007

Browse files
committed
remove test deploy
1 parent ca5e82b commit fb39007

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/workflows/msl-test.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ name: MSL Test & GitHub Pages
99
on:
1010
schedule:
1111
- cron: '0 3 * * *' # every day 03:00 UTC
12-
pull_request:
13-
branches: [main] # only for testing
1412
workflow_dispatch:
1513
inputs:
1614
lib_version:
@@ -69,6 +67,15 @@ jobs:
6967
println("bm_version=" * string(pkgversion(BaseModelica)))
7068
' >> "$GITHUB_OUTPUT"
7169
70+
# ── Reference results ─────────────────────────────────────────────────────
71+
- name: Checkout MAP-LIB reference results
72+
uses: actions/checkout@v6
73+
with:
74+
repository: modelica/MAP-LIB_ReferenceResults
75+
ref: v${{ env.LIB_VERSION }}
76+
path: MAP-LIB_ReferenceResults
77+
fetch-depth: 1
78+
7279
# ── Run the pipeline ──────────────────────────────────────────────────────
7380
- name: Run MSL pipeline
7481
env:
@@ -77,8 +84,10 @@ jobs:
7784
julia --project=. -e '
7885
using BaseModelicaLibraryTesting
7986
main(
87+
library = "Modelica",
8088
version = ENV["LIB_VERSION"],
8189
results_root = "results/$(ENV["BM_VERSION"])/Modelica/$(ENV["LIB_VERSION"])",
90+
ref_root = "MAP-LIB_ReferenceResults",
8291
)
8392
'
8493

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# BaseModelicaLibraryTesting.jl
22

33
[![Build Status][build-badge-svg]][build-action-url]
4+
[![MSL Test Reports][msl-badge-svg]][msl-pages-url]
45

56
Experimental Base Modelica library testing based on Julia.
67

@@ -68,6 +69,8 @@ file for details.
6869

6970
[build-badge-svg]: https://github.com/OpenModelica/BaseModelicaLibraryTesting.jl/actions/workflows/CI.yml/badge.svg?branch=main
7071
[build-action-url]: https://github.com/OpenModelica/BaseModelicaLibraryTesting.jl/actions/workflows/CI.yml?query=branch%3Amain
72+
[msl-badge-svg]: https://github.com/OpenModelica/BaseModelicaLibraryTesting.jl/actions/workflows/msl-test.yml/badge.svg?branch=main
73+
[msl-pages-url]: https://openmodelica.github.io/BaseModelicaLibraryTesting.jl/
7174
[openmodelica-url]: https://openmodelica.org/
7275
[basemodelicajl-url]: https://github.com/SciML/BaseModelica.jl
7376
[modelingtoolkitjl-url]: https://github.com/SciML/ModelingToolkit.jl

0 commit comments

Comments
 (0)