Skip to content

Commit

Permalink
Merge pull request #80 from ImperialCollegeLondon/feat/helioswarm
Browse files Browse the repository at this point in the history
Update software to v6.0.0
  • Loading branch information
mfacchinelli authored Sep 25, 2024
2 parents f71963a + b5e6689 commit 5c0f036
Show file tree
Hide file tree
Showing 194 changed files with 2,925 additions and 1,300 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
MAG_DATA_VISUALIZATION_VERSION=6.0.0
14 changes: 7 additions & 7 deletions .github/workflows/matlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Run MATLAB Tests
strategy:
matrix:
release: ["R2023b", "R2024a"]
release: ["R2023b", "R2024a", "R2024b"]
runs-on: ubuntu-latest
steps:
- name: Check out repository
Expand All @@ -29,7 +29,7 @@ jobs:
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: MATLAB Test Results
name: MATLAB Test Results (${{ matrix.release }})
path: 'results.xml'
working-directory: 'artifacts'
reporter: java-junit
Expand All @@ -38,26 +38,26 @@ jobs:
with:
path: 'artifacts/coverage.xml'
minimum_coverage: 80
report_name: Coverage Report
report_name: Coverage Report (${{ matrix.release }})

package:
name: Package MATLAB Toolbox
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
needs: test
env:
VERSION: "5.1.1"
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up MATLAB
uses: matlab-actions/[email protected]
with:
release: R2023b
- name: Load Environment Variables
uses: aarcangeli/[email protected]
- name: Package toolbox
uses: matlab-actions/[email protected]
with:
tasks: package("${{ env.VERSION }}")
tasks: package("${{ env.MAG_DATA_VISUALIZATION_VERSION }}")
- name: Upload toolbox
uses: actions/[email protected]
with:
Expand All @@ -67,6 +67,6 @@ jobs:
- name: Create release
uses: ncipollo/[email protected]
with:
tag: v${{ env.VERSION }}
tag: v${{ env.MAG_DATA_VISUALIZATION_VERSION }}
artifacts: 'artifacts/MAG Data Visualization.mltbx'
bodyFile: 'resources/release-notes.md'
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Extensions
*.asv
*.DS_Store

# Folders
.buildtool/
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
},
"cSpell.words": [
"downsample",
"signedness"
"signedness",
"IMAP"
]
}
Loading

0 comments on commit 5c0f036

Please sign in to comment.