-
Notifications
You must be signed in to change notification settings - Fork 31
53 lines (47 loc) · 1.46 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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/doc/requirements_doc.txt
make -C CI/doc gen_autodocs html
make -C ./CI/scripts add_libad9361
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v1
with:
release: R2022b
- 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