Use docker flags for unstashing #132
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
name: Build Toolbox | |
on: [push, pull_request] | |
jobs: | |
dependencies: | |
uses: ./.github/workflows/depends.yml | |
build: | |
name: Build Toolbox | |
needs: dependencies | |
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' | |
- uses: actions/download-artifact@v4 | |
with: | |
path: "." | |
- name: Organize Toolbox Dependencies | |
run: | | |
ls deps | |
# assert that the dependencies are present | |
if [ ! -f "deps/libad9361.dll" ]; then | |
echo "libad9361-iio DLL not found" | |
exit 1 | |
fi | |
if [ ! -f "deps/libad9361.so" ]; then | |
echo "libad9361-iio SO not found" | |
exit 1 | |
fi | |
if [ ! -f "deps/ad9361.h" ]; then | |
echo "libad9361-iio header not found" | |
exit 1 | |
fi | |
make -C ./CI/scripts build | |
pip3 install -r CI/doc/requirements_doc.txt | |
make -C CI/doc gen_autodocs html | |
- 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: TransceiverToolboxInstaller | |
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 |