-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (43 loc) · 1.34 KB
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Rust RTI Test
on:
push:
branches: [ "main" ]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cd core/federated; cargo build --verbose
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Unit tests
run: cd core/federated; cargo test
integration-test:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Check out lingua-franca repository
uses: actions/checkout@v3
with:
# TODO: Change the below repo into 'lf-lang/lingua-franca'
repository: chanijjani/lingua-franca
submodules: true
fetch-depth: 0
# TODO: Change the below ref 'master'
ref: integration_tests_with_rust_rti
- name: Prepare build environment
# TODO: Change the below repo into 'lf-lang/lingua-franca@master'
uses: chanijjani/lingua-franca/.github/actions/prepare-build-env@integration_tests_with_rust_rti
- name: Perform federated tests for C target with Rust RTI
run:
git clone https://github.com/lf-lang/rust-rti.git;
cd rust-rti;
git checkout ${{ github.head_ref }};
cd ../;
./gradlew targetTest -Ptarget=RustRti