mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Build Scripts: - Linux GCC x64 dynamic - Linux Clang x64 dynamic - Windows MSVC x64 dynamic - macOS Clang x64 dynamic Security scanning: - CodeQL security scanning - MSVC code scanning
41 lines
970 B
YAML
41 lines
970 B
YAML
# This workflow will build OCCT on Ubuntu with Clang compiler
|
|
# using the provided Docker image with Clang tools.
|
|
#
|
|
# Notes:
|
|
# freetype is disabled
|
|
# samples are not built
|
|
|
|
name: Build OCCT on Linux with Clang x64 dynamic
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
build-linux-clang:
|
|
name: Build on Ubuntu with Clang
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4.1.7
|
|
|
|
- name: Install dependencies
|
|
run: sudo apt-get update && sudo apt-get install -y tcl-dev tk-dev cmake clang make libbtbb-dev libx11-dev libglu1-mesa-dev
|
|
|
|
- name: Configure OCCT
|
|
run: |
|
|
mkdir -p build
|
|
cd build
|
|
cmake -G "Unix Makefiles" \
|
|
-D CMAKE_C_COMPILER=clang \
|
|
-D CMAKE_CXX_COMPILER=clang++ \
|
|
-D USE_FREETYPE=OFF \
|
|
-D CMAKE_BUILD_TYPE=Release ..
|
|
|
|
- name: Build OCCT
|
|
run: |
|
|
cd build
|
|
make -j$(nproc)
|