Release v1.1.4 #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run tests on a pull request after it has been labeled 'safe to test' | |
name: test-pull-request | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on pull requests that contain the label 'safe to test' | |
pull_request_target: | |
types: [ labeled ] | |
permissions: {} | |
jobs: | |
test-smoke: | |
name: smoke-${{ matrix.version }}-${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
if: contains(github.event.pull_request.labels.*.name, 'safe to test') | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [R2021b, R2023a] | |
os: [windows-latest, ubuntu-latest, macos-13] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
ref: "refs/pull/${{ github.event.number }}/merge" | |
persist-credentials: false | |
- name: Verify Head | |
shell: bash | |
run: | | |
if [ "$(git ls-remote origin ${{ github.event.number }}/head | awk '{print $1}')" != "${{ github.event.pull_request.head.sha }}" ]; then | |
echo "HEAD does not match github.event.pull_request.head.sha" | |
exit 1 | |
fi | |
- name: Set up MATLAB | |
uses: matlab-actions/[email protected] | |
with: | |
release: ${{ matrix.version }} | |
env: | |
MATHWORKS_SKIP_ACTIVATION: true | |
- name: Setup node | |
uses: actions/[email protected] | |
- name: npm clean install | |
run: npm ci | |
- name: Start Xvfb | |
run: /usr/bin/Xvfb :17 -screen 0 1024x768x24 > /dev/null 2>&1 & echo "Started xvfb" | |
shell: bash | |
if: ${{ success() && matrix.os == 'ubuntu-latest' }} | |
- name: Run tests | |
run: npm run test | |
env: | |
MLM_WEB_LICENSE: true | |
MLM_WEB_ID: ${{secrets.MLM_WEB_ID}} | |
MLM_WEB_USER_CRED: ${{secrets.MLM_WEB_USER_CRED}} | |
DISPLAY: ":17.0" |