-
Notifications
You must be signed in to change notification settings - Fork 20
62 lines (52 loc) · 2.44 KB
/
run_book_tests.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
52
53
54
55
56
57
58
59
60
61
62
name: Run all book tests
on:
# Automatically run this action when a new push is made to repo
push:
# Run tests every 6 months after prerelease comes out to check for regressions.
# Prerelease for "a" release is out by Jan 1. for "b" release by Jul 1
schedule:
- cron: "0 0 1 1,7 *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
my-job:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Check out RVC3-MATLAB repository (for unit tests)
uses: actions/checkout@v3
- run: echo "The ${{ github.repository }} repository has been cloned to the runner."
- name: Update apt package cache
# Run apt-get update to get the latest package cache
run: |
sudo apt-get update
- name: Start display server
# Start a display server so Java Swing is available for testing
run: |
sudo apt-get install xvfb
Xvfb :99 &
echo "DISPLAY=:99" >> $GITHUB_ENV
- name: Install GStreamer and plugins for VideoReader
run: |
sudo apt-get install libgstreamer-plugins-bad1.0-0 gstreamer1.0-plugins-ugly
- name: Set up MATLAB
# This uses the latest release of MATLAB. Can specify "release" if needed.
# Use v2 for Java Swing access
uses: matlab-actions/setup-matlab@v2
with:
products: MATLAB Simulink Robotics_System_Toolbox Navigation_Toolbox UAV_Toolbox Automated_Driving_Toolbox Computer_Vision_Toolbox Image_Processing_Toolbox Deep_Learning_Toolbox Model_Predictive_Control_Toolbox Optimization_Toolbox ROS_Toolbox Signal_Processing_Toolbox Statistics_and_Machine_Learning_Toolbox Symbolic_Math_Toolbox Control_System_Toolbox Parallel_Computing_Toolbox
# Run tests with prerelease as soon as available; switch to GR once it's live
release: latest-including-prerelease
- name: Print out ver details
uses: matlab-actions/run-command@v1
with:
command: ver; exit;
- name: Run MATLAB Tests
# Only run tests in folder test/book
uses: matlab-actions/run-tests@v2
with:
select-by-folder: test/book
startup-options: -webfigures
code-coverage-cobertura: code-coverage/coverage.xml
# Run tests in parallel. Requires Parallel_Computing_Toolbox in "products" list above
use-parallel: true