-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #157 from analogdevicesinc/R2023b_release
- Loading branch information
Showing
11 changed files
with
72 additions
and
20 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Build Toolbox | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
name: Build Toolbox | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.10' | ||
- name: Organize Toolbox Dependencies | ||
run: | | ||
make -C ./CI/scripts build | ||
pip3 install -r CI/gen_doc/requirements_doc.txt | ||
make -C CI/gen_doc doc | ||
- name: Set up MATLAB | ||
uses: matlab-actions/setup-matlab@v1 | ||
with: | ||
release: R2023b | ||
- name: Compile Toolbox | ||
uses: matlab-actions/run-command@v1 | ||
with: | ||
command: cd('CI/scripts');genTlbx(1);exit() | ||
|
||
- name: Move generated .mltbx file | ||
run: | | ||
mkdir toolbox | ||
cp *.mltbx toolbox | ||
- name: Save generated .mltbx file | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: HighSpeedConverterToolboxInstaller | ||
path: toolbox | ||
|
||
- name: Post development build to GH releases page | ||
uses: "marvinpinto/action-automatic-releases@latest" | ||
if: github.ref == 'refs/heads/master' | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
automatic_release_tag: "latest" | ||
prerelease: true | ||
title: "Latest Development Build" | ||
files: toolbox |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,13 @@ | |
<param.authnamewatermark>Travis Collins</param.authnamewatermark> | ||
<param.email>[email protected]</param.email> | ||
<param.company>Analog Devices, Inc</param.company> | ||
<param.summary>Board support package for HDL targeting and data streaming from Analog Devices transceivers.</param.summary> | ||
<param.description>Scripts and tools created by ADI to be used with MATLAB and Simulink with ADI transceivers | ||
<param.summary>Board support package for HDL targeting and data streaming from Analog Devices high-speed data converters.</param.summary> | ||
<param.description>Scripts and tools created by ADI to be used with MATLAB and Simulink with ADI high-speed data converters | ||
Documentation: https://wiki.analog.com/resources/eval/user-guides/ad-fmcomms2-ebz/software/matlab_bsp | ||
Support: https://ez.analog.com/</param.description> | ||
<param.screenshot>__REPO-ROOT__/CI/doc/ADI_Logo_AWP_Large.png</param.screenshot> | ||
<param.version>__VERSION__</param.version> | ||
<param.output>${PROJECT_ROOT}/AnalogDevicesTransceiverToolbox.mltbx</param.output> | ||
<param.output>${PROJECT_ROOT}/AnalogDevicesHighSpeedConverterToolbox.mltbx</param.output> | ||
<param.products.name> | ||
<item>MATLAB</item> | ||
<item>Simulink</item> | ||
|
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
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
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
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
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