Skip to content

Commit 387a996

Browse files
committed
CI: fix setting a specific runtime ref for Rust
1 parent ea0cde4 commit 387a996

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/rs-tests.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@ jobs:
2626
ref: ${{ inputs.compiler-ref }}
2727
- name: Prepare build environment
2828
uses: ./.github/actions/prepare-build-env
29+
- name: Check out specific ref of reactor-rs
30+
uses: actions/checkout@v3
31+
with:
32+
repository: lf-lang/reactor-rs
33+
path: org.lflang/src/lib/rs/reactor-rs
34+
ref: ${{ inputs.runtime-ref }}
35+
if: ${{ inputs.runtime-ref }}
2936
- name: Setup Rust
3037
id: rustup
3138
uses: ATiltedTree/setup-rust@v1
@@ -42,10 +49,6 @@ jobs:
4249
with:
4350
rust-version: ${{ matrix.rust }}
4451
components: clippy
45-
- name: Set rust runtime version
46-
run: |
47-
echo ${{ inputs.runtime-ref }} > org.lflang/src/org/lflang/generator/rust/rust-runtime-version.txt
48-
if: ${{ inputs.runtime-ref }}
4952
- name: Run Rust tests
5053
run: |
5154
./gradlew test --tests org.lflang.tests.runtime.RustTest.*

0 commit comments

Comments
 (0)