Skip to content

Add matrix builds of configuration for nightly testing #27434

Add matrix builds of configuration for nightly testing

Add matrix builds of configuration for nightly testing #27434

Workflow file for this run

# This workflow runs a matrix build with both versions of setup MATLAB action
name: MATLAB matrix build
# Controls when the action will run.
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
release: [R2021a, R2021b, R2022a, R2022b, R2023a, R2023b, R2024a, R2024b, latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup MATLAB
uses: matlab-actions/setup-matlab@v2
- name: Run tests and generate artifacts
uses: matlab-actions/run-tests@v2
with:
source-folder: code
- name: Send mail
if: ${{ failure() }}
uses: dawidd6/action-send-mail@v3
with:
server_address: smtp.gmail.com
server_port: 465
username: ${{ secrets.MAIL_USERNAME }}
password: ${{ secrets.MAIL_PASSWORD }}
subject: ${{ github.job }} job of ${{ github.repository }} has ${{ job.status }}
to: ${{ secrets.CI_INTERNAL_EMAIL }}
from: ${{ secrets.MAIL_USERNAME }}
secure: true
body: ${{ github.job }} job in workflow ${{ github.workflow }} of ${{ github.repository }} has ${{ job.status }}