mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Add GitHub Action to build CSharp sample on Windows Add MFC and Qt sample build actions Improve CASROOT assignment logic in env.build.sh and env.install.sh for better compatibility with binary directories
87 lines
2.9 KiB
YAML
87 lines
2.9 KiB
YAML
name: 'Build TInspector'
|
|
description: 'Build TInspector using OCCT installation as a separate job'
|
|
|
|
inputs:
|
|
platform:
|
|
description: 'Build platform (windows/linux)'
|
|
required: true
|
|
install-artifact-name:
|
|
description: 'OCCT installation artifact name'
|
|
required: true
|
|
thirdparty_url:
|
|
description: 'URL to download 3rdparty dependencies'
|
|
required: false
|
|
default: 'https://github.com/Open-Cascade-SAS/OCCT/releases/download/V7_9_0_beta1/3rdparty-vc14-64.zip'
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Download OCCT installation
|
|
uses: actions/download-artifact@v4.1.7
|
|
with:
|
|
name: ${{ inputs.install-artifact-name }}
|
|
path: occt-install
|
|
|
|
- name: Install Windows dependencies
|
|
if: inputs.platform == 'windows'
|
|
shell: pwsh
|
|
run: |
|
|
Invoke-WebRequest -Uri ${{ inputs.thirdparty_url }} -OutFile 3rdparty-vc14-64.zip
|
|
Expand-Archive -Path 3rdparty-vc14-64.zip -DestinationPath .
|
|
Remove-Item 3rdparty-vc14-64.zip
|
|
|
|
- name: Install Linux dependencies
|
|
if: inputs.platform == 'linux'
|
|
shell: bash
|
|
run: sudo apt-get update && sudo apt-get install -y tcl-dev tk-dev cmake gcc g++ make libbtbb-dev libx11-dev libglu1-mesa-dev tcllib tcl-thread tcl libvtk9-dev libopenvr-dev libdraco-dev libfreeimage-dev libegl1-mesa-dev libgles2-mesa-dev libfreetype-dev qtbase5-dev qt5-qmake qtbase5-dev-tools qtdeclarative5-dev qttools5-dev qttools5-dev-tools
|
|
|
|
- name: Configure TInspector - Windows
|
|
if: inputs.platform == 'windows'
|
|
shell: pwsh
|
|
run: |
|
|
cd tools
|
|
mkdir build
|
|
cd build
|
|
cmake -G "Visual Studio 17 2022" -A x64 `
|
|
-D CMAKE_BUILD_TYPE=Release `
|
|
-D BUILD_SHARED_LIBS=ON `
|
|
-D 3RDPARTY_DIR=${{ github.workspace }}//3rdparty-vc14-64 `
|
|
-D OpenCASCADE_DIR=${{ github.workspace }}/occt-install `
|
|
-D INSTALL_DIR=${{ github.workspace }}/tools/install `
|
|
..
|
|
|
|
- name: Configure TInspector - Linux
|
|
if: inputs.platform == 'linux'
|
|
shell: bash
|
|
run: |
|
|
cd tools
|
|
mkdir build
|
|
cd build
|
|
cmake -G "Unix Makefiles" \
|
|
-D CMAKE_BUILD_TYPE=Release \
|
|
-D BUILD_SHARED_LIBS=ON \
|
|
-D OpenCASCADE_DIR=${{ github.workspace }}/occt-install \
|
|
-D INSTALL_DIR=${{ github.workspace }}/tools/install \
|
|
..
|
|
|
|
- name: Build TInspector - Windows
|
|
if: inputs.platform == 'windows'
|
|
shell: pwsh
|
|
run: |
|
|
cd tools/build
|
|
cmake --build . --config Release --target install
|
|
|
|
- name: Build TInspector - Linux
|
|
if: inputs.platform == 'linux'
|
|
shell: bash
|
|
run: |
|
|
cd tools/build
|
|
make install -j$(nproc)
|
|
|
|
- name: Upload TInspector installation
|
|
uses: actions/upload-artifact@v4.4.3
|
|
with:
|
|
name: inspector-${{ inputs.platform }}-x64
|
|
path: tools/install
|
|
retention-days: 7
|