Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…aview into 5.13.0
  • Loading branch information
julien-tierny committed Dec 13, 2024
2 parents bf1f5ec + 69c1792 commit 5fa37c5
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 14 deletions.
23 changes: 15 additions & 8 deletions .github/workflows/headless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-12, macos-14]
os: [macos-13, macos-14, macos-15]
env:
CCACHE_DIR: /Users/runner/work/ttk/.ccache
CCACHE_MAXSIZE: 200M
Expand All @@ -90,14 +90,14 @@ jobs:
# ParaView dependencies
#brew reinstall python
brew install --cask xquartz
brew install ninja open-mpi
brew install ninja
- name: Create & configure ParaView build directory
run: |
mkdir build && cd build
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DPARAVIEW_USE_MPI=ON \
-DPARAVIEW_USE_MPI=OFF \
-DPARAVIEW_USE_QT=OFF \
-GNinja \
$GITHUB_WORKSPACE
Expand Down Expand Up @@ -240,22 +240,29 @@ jobs:
file: ttk-paraview-headless-ubuntu-24.04/ttk-paraview.deb
asset_name: ttk-paraview-headless-ubuntu-24.04.deb

- name: Upload MacOS 15 .tar.gz as Release Asset
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
file: ttk-paraview-headless-macos-15/ttk-paraview.tar.gz
asset_name: ttk-paraview-headless-macos-15.tar.gz

- name: Upload MacOS 14 (arm64) .tar.gz as Release Asset
- name: Upload MacOS 14 .tar.gz as Release Asset
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
file: ttk-paraview-headless-macos-14/ttk-paraview.tar.gz
asset_name: ttk-paraview-headless-macos-14-arm64.tar.gz
asset_name: ttk-paraview-headless-macos-14.tar.gz

- name: Upload MacOS 12 .tar.gz as Release Asset
- name: Upload MacOS 13 .tar.gz as Release Asset
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
file: ttk-paraview-headless-macos-12/ttk-paraview.tar.gz
asset_name: ttk-paraview-headless-macos-12.tar.gz
file: ttk-paraview-headless-macos-13/ttk-paraview.tar.gz
asset_name: ttk-paraview-headless-macos-13.tar.gz


- name: Upload .exe as Release Asset
Expand Down
20 changes: 14 additions & 6 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-12, macos-14]
os: [macos-13, macos-14, macos-15]
steps:
- uses: actions/checkout@v4
name: Checkout TTK-ParaView source code
Expand Down Expand Up @@ -239,21 +239,29 @@ jobs:
file: ttk-paraview-ubuntu-24.04/ttk-paraview.deb
asset_name: ttk-paraview-$tag-ubuntu-24.04.deb

- name: Upload MacOS 14 (arm64) .tar.gz as Release Asset
- name: Upload MacOS 15 .tar.gz as Release Asset
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
file: ttk-paraview-macos-15/ttk-paraview.tar.gz
asset_name: ttk-paraview-$tag-macos-15.tar.gz

- name: Upload MacOS 14 .tar.gz as Release Asset
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
file: ttk-paraview-macos-14/ttk-paraview.tar.gz
asset_name: ttk-paraview-$tag-macos-14-arm64.tar.gz
asset_name: ttk-paraview-$tag-macos-14.tar.gz

- name: Upload MacOS 12 .tar.gz as Release Asset
- name: Upload MacOS 13 .tar.gz as Release Asset
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
file: ttk-paraview-macos-12/ttk-paraview.tar.gz
asset_name: ttk-paraview-$tag-macos-12.tar.gz
file: ttk-paraview-macos-13/ttk-paraview.tar.gz
asset_name: ttk-paraview-$tag-macos-13.tar.gz

- name: Upload .exe as Release Asset
uses: svenstaro/upload-release-action@v2
Expand Down

0 comments on commit 5fa37c5

Please sign in to comment.