Skip to content

Commit

Permalink
Increment version, update CI settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
PMeira committed Oct 30, 2024
1 parent 78d8137 commit 0d0f19a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 12 deletions.
2 changes: 1 addition & 1 deletion +DSS_MATLAB/version.m
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
function result = version
result = '0.14.3';
result = '0.14.3-1';
end
33 changes: 22 additions & 11 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
DSS_CAPI_VERSION: '0.14.3'
DSS_MATLAB_VERSION: '0.14.3'
DSS_MATLAB_VERSION: '0.14.3-1'

jobs:
linux_x64:
Expand Down Expand Up @@ -50,9 +50,9 @@ jobs:
ls -l
cd ..
- name: 'Upload artifacts'
uses: "actions/upload-artifact@v2"
uses: "actions/upload-artifact@v4"
with:
name: 'packages'
name: 'package-linux_x64'
path: '${{ github.workspace }}/dss_matlab/release'

win_x64:
Expand Down Expand Up @@ -88,13 +88,13 @@ jobs:
ls -l
cd ..
- name: 'Upload artifacts'
uses: "actions/upload-artifact@v3"
uses: "actions/upload-artifact@v4"
with:
name: 'packages'
name: 'package-win_x64'
path: '${{ github.workspace }}/dss_matlab/release'

darwin_x64:
runs-on: 'macos-12'
runs-on: 'macos-13'
env:
TRAVIS_JOB_NAME: "darwin_x64"
steps:
Expand Down Expand Up @@ -127,13 +127,13 @@ jobs:
ls -l
cd ..
- name: 'Upload artifacts'
uses: "actions/upload-artifact@v3"
uses: "actions/upload-artifact@v4"
with:
name: 'packages'
name: 'package-darwin_x64'
path: '${{ github.workspace }}/dss_matlab/release'

darwin_arm64:
runs-on: 'macos-12'
runs-on: 'macos-13'
env:
TRAVIS_JOB_NAME: "darwin_arm64"
steps:
Expand Down Expand Up @@ -166,8 +166,19 @@ jobs:
ls -l
cd ..
- name: 'Upload artifacts'
uses: "actions/upload-artifact@v3"
uses: "actions/upload-artifact@v4"
with:
name: 'packages'
name: 'package-darwin_arm64'
path: '${{ github.workspace }}/dss_matlab/release'


merge:
runs-on: ubuntu-latest
needs: [linux_x64, win_x64, darwin_x64, darwin_arm64]
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: 'dss_matlab-packages'
pattern: '*'
delete-merged: true

0 comments on commit 0d0f19a

Please sign in to comment.