Skip to content

Commit

Permalink
Build for 94a8db2
Browse files Browse the repository at this point in the history
  • Loading branch information
Release Action committed Apr 11, 2024
1 parent 94a8db2 commit f9fc3d8
Show file tree
Hide file tree
Showing 129 changed files with 3,393 additions and 0 deletions.
Binary file added dist/bin/glnxa64/run-matlab-command
Binary file not shown.
27 changes: 27 additions & 0 deletions dist/bin/license.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Copyright (c) 2022-2024, The MathWorks, Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

3. In all cases, the software is, and all modifications and derivatives of the
software shall be, licensed to you solely for use in conjunction with
MathWorks products and service offerings.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Binary file added dist/bin/maca64/run-matlab-command
Binary file not shown.
Binary file added dist/bin/maci64/run-matlab-command
Binary file not shown.
27 changes: 27 additions & 0 deletions dist/bin/thirdpartylicenses.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Copyright (c) 2013 Google. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
* Neither the name of Google Inc. nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Binary file added dist/bin/win64/run-matlab-command.exe
Binary file not shown.
3 changes: 3 additions & 0 deletions dist/index.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
classdef CreateCoberturaAndHTMLCodePluginExpressionBuilder < scriptgen.CodeBuilder
% Copyright 2022 The MathWorks, Inc.

properties
CoberturaFilePath = '''coverage.xml'''
HTMLFolderPath = '''htmlCodeCoverage'''
Source = {'pwd'}
end

methods
function set.CoberturaFilePath(obj, value)
scriptgen.internal.validateTextScalar(value);
obj.CoberturaFilePath = value;
end

function set.HTMLFolderPath(obj, value)
scriptgen.internal.validateTextScalar(value);
obj.HTMLFolderPath = value;
end

function set.Source(obj, value)
scriptgen.internal.validateTextArray(value);
obj.Source = value;
end
end
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreateCoberturaAndHTMLCodePluginParallelExpressionBuilder < ...
scriptgen.expressions.test.CreateCoberturaAndHTMLCodePluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreateCoberturaAndHTMLCodePluginSerialExpressionBuilder < ...
scriptgen.expressions.test.CreateCoberturaAndHTMLCodePluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
classdef CreateCoberturaCodePluginExpressionBuilder < scriptgen.CodeBuilder
% Copyright 2020 The MathWorks, Inc.

properties
FilePath = '''coverage.xml'''
Source = {'pwd'}
end

methods
function set.FilePath(obj, value)
scriptgen.internal.validateTextScalar(value);
obj.FilePath = value;
end

function set.Source(obj, value)
scriptgen.internal.validateTextArray(value);
obj.Source = value;
end
end
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreateCoberturaCodePluginParallelExpressionBuilder < ...
scriptgen.expressions.test.CreateCoberturaCodePluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreateCoberturaCodePluginSerialExpressionBuilder < ...
scriptgen.expressions.test.CreateCoberturaCodePluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
classdef CreateCoberturaModelPluginExpressionBuilder < scriptgen.CodeBuilder
% Copyright 2020 The MathWorks, Inc.

properties
FilePath = '''coverage.xml'''
end

methods
function set.FilePath(obj, value)
scriptgen.internal.validateTextScalar(value);
obj.FilePath = value;
end
end
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreateCoberturaModelPluginParallelExpressionBuilder < ...
scriptgen.expressions.test.CreateCoberturaModelPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreateCoberturaModelPluginSerialExpressionBuilder < ...
scriptgen.expressions.test.CreateCoberturaModelPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
classdef CreateFailOnWarningsPluginExpressionBuilder < scriptgen.CodeBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreateFailOnWarningsPluginParallelExpressionBuilder < ...
scriptgen.expressions.test.CreateFailOnWarningsPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreateFailOnWarningsPluginSerialExpressionBuilder < ...
scriptgen.expressions.test.CreateFailOnWarningsPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
classdef CreateHTMLCodePluginExpressionBuilder < scriptgen.CodeBuilder
% Copyright 2020 The MathWorks, Inc.

properties
FolderPath = '''htmlCodeCoverage'''
Source = {'pwd'}
end

methods
function set.FolderPath(obj, value)
scriptgen.internal.validateTextScalar(value);
obj.FolderPath = value;
end

function set.Source(obj, value)
scriptgen.internal.validateTextArray(value);
obj.Source = value;
end
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
classdef CreateHTMLCodePluginParallelExpressionBuilder < ...
scriptgen.expressions.test.CreateHTMLCodePluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
classdef CreateHTMLCodePluginSerialExpressionBuilder < ...
scriptgen.expressions.test.CreateHTMLCodePluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
classdef CreateHTMLModelPluginExpressionBuilder < scriptgen.CodeBuilder
% Copyright 2021 The MathWorks, Inc.

properties
FolderPath = '''htmlModelCoverage'''
end

methods
function set.FolderPath(obj, value)
scriptgen.internal.validateTextScalar(value);
obj.FolderPath = value;
end
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
classdef CreateHTMLModelPluginParallelExpressionBuilder < ...
scriptgen.expressions.test.CreateHTMLModelPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
classdef CreateHTMLModelPluginSerialExpressionBuilder < ...
scriptgen.expressions.test.CreateHTMLModelPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
classdef CreateHTMLTestReportPluginExpressionBuilder < scriptgen.CodeBuilder
% Copyright 2021 The MathWorks, Inc.

properties
FolderPath = '''report'''
end

methods
function set.FolderPath(obj, value)
scriptgen.internal.validateTextScalar(value);
obj.FolderPath = value;
end
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
classdef CreateHTMLTestReportPluginParallelExpressionBuilder < ...
scriptgen.expressions.test.CreateHTMLTestReportPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
classdef CreateHTMLTestReportPluginSerialExpressionBuilder < ...
scriptgen.expressions.test.CreateHTMLTestReportPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
classdef CreateHasBaseFolderSelectorExpressionBuilder < scriptgen.CodeBuilder
% Copyright 2020 The MathWorks, Inc.

properties
BaseFolder = {'pwd'}
end

methods
function set.BaseFolder(obj, value)
scriptgen.internal.validateTextArray(value);
obj.BaseFolder = value;
end
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
classdef CreateHasTagSelectorExpressionBuilder < scriptgen.CodeBuilder
% Copyright 2020 The MathWorks, Inc.

properties
Tag = '''tag'''
end

methods
function set.Tag(obj, value)
scriptgen.internal.validateTextScalar(value);
obj.Tag = value;
end
end
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
classdef CreateJUnitPluginExpressionBuilder < scriptgen.CodeBuilder
% Copyright 2020 The MathWorks, Inc.

properties
FilePath = '''results.xml'''
end

methods
function set.FilePath(obj, value)
scriptgen.internal.validateTextScalar(value);
obj.FilePath = value;
end
end
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreateJUnitPluginParallelExpressionBuilder < ...
scriptgen.expressions.test.CreateJUnitPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreateJUnitPluginSerialExpressionBuilder < ...
scriptgen.expressions.test.CreateJUnitPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
classdef CreatePDFPluginExpressionBuilder < scriptgen.CodeBuilder
% Copyright 2020 The MathWorks, Inc.

properties
FilePath = '''report.pdf'''
end

methods
function set.FilePath(obj, value)
scriptgen.internal.validateTextScalar(value);
obj.FilePath = value;
end
end
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreatePDFPluginParallelExpressionBuilder < ...
scriptgen.expressions.test.CreatePDFPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreatePDFPluginSerialExpressionBuilder < ...
scriptgen.expressions.test.CreatePDFPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
classdef CreateSimulinkTestPluginExpressionBuilder < scriptgen.CodeBuilder
% Copyright 2020 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreateSimulinkTestPluginParallelExpressionBuilder < ...
scriptgen.expressions.test.CreateSimulinkTestPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreateSimulinkTestPluginSerialExpressionBuilder < ...
scriptgen.expressions.test.CreateSimulinkTestPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
classdef CreateSimulinkTestResultsPluginExpressionBuilder < scriptgen.CodeBuilder
% Copyright 2020 The MathWorks, Inc.

properties
FilePath = '''results.mldatx'''
end

methods
function set.FilePath(obj, value)
scriptgen.internal.validateTextScalar(value);
obj.FilePath = value;
end
end
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreateSimulinkTestResultsPluginParallelExpressionBuilder < ...
scriptgen.expressions.test.CreateSimulinkTestResultsPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
classdef CreateSimulinkTestResultsPluginSerialExpressionBuilder < ...
scriptgen.expressions.test.CreateSimulinkTestResultsPluginExpressionBuilder
% Copyright 2022 The MathWorks, Inc.
end

Loading

0 comments on commit f9fc3d8

Please sign in to comment.