Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions .github/workflows/build-test-linux-vcpkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,22 +47,22 @@ jobs:
matrix:
config: [Debug, Release]
arch: [x64, arm64]
compiler: [Clang 19, GCC 11]
compiler: [Clang 20, GCC 11]
full_config_build:
- ${{ fromJSON( inputs.full_config_build ) }}
exclude:
# Do not run Debug Clang 19 build on every commit (but only once a day)
# Do not run Debug Clang 20 build on every commit (but only once a day)
- full_config_build: false
compiler: Clang 19
compiler: Clang 20
config: Debug
# Do not run Release GCC 11 build on every commit (but only once a day)
- full_config_build: false
compiler: GCC 11
config: Release
include:
- compiler: Clang 19
cxx-compiler: /usr/bin/clang++-19
c-compiler: /usr/bin/clang-19
- compiler: Clang 20
cxx-compiler: /usr/bin/clang++-20
c-compiler: /usr/bin/clang-20
cxx-standard: 23
- compiler: GCC 11
cxx-compiler: /opt/rh/gcc-toolset-11/root/usr/bin/g++
Expand Down Expand Up @@ -206,19 +206,19 @@ jobs:
upload_test_artifacts: ${{ inputs.upload_test_artifacts }}

- name: Create Package
if: ${{ matrix.config == 'Release' && matrix.compiler == 'Clang 19' }}
if: ${{ matrix.config == 'Release' && matrix.compiler == 'Clang 20' }}
run: |
./scripts/distribution_vcpkg.sh ${{ inputs.app_version }}
mv meshlib_linux-vcpkg.tar.xz meshlib_linux-vcpkg-${{ matrix.arch }}.tar.xz

- name: Extract Package
if: ${{ matrix.config == 'Release' && matrix.compiler == 'Clang 19' }}
if: ${{ matrix.config == 'Release' && matrix.compiler == 'Clang 20' }}
run: |
mkdir meshlib_install
tar -xf meshlib_linux-vcpkg-${{ matrix.arch }}.tar.xz -C meshlib_install

- name: Build C++ examples
if: ${{ matrix.config == 'Release' && matrix.compiler == 'Clang 19' }}
if: ${{ matrix.config == 'Release' && matrix.compiler == 'Clang 20' }}
run: |
cmake \
-S examples/cpp-examples \
Expand All @@ -230,7 +230,7 @@ jobs:
--parallel $(nproc)

- name: Build C examples
if: ${{ matrix.config == 'Release' && matrix.compiler == 'Clang 19'}}
if: ${{ matrix.config == 'Release' && matrix.compiler == 'Clang 20'}}
run: |
cmake \
-S examples/c-examples \
Expand All @@ -242,7 +242,7 @@ jobs:
--parallel $(nproc)

- name: Upload vcpkg Distribution
if: ${{ inputs.upload_artifacts && matrix.config == 'Release' && matrix.compiler == 'Clang 19' }}
if: ${{ inputs.upload_artifacts && matrix.config == 'Release' && matrix.compiler == 'Clang 20' }}
uses: actions/upload-artifact@v6
with:
name: Distributives_linux-vcpkg-${{ matrix.arch }}
Expand All @@ -259,7 +259,7 @@ jobs:
stats_file_suffix: -${{ steps.collect-runner-stats.outputs.job_id }}

- name: Create and fix fake Wheel for NuGet
if: ${{ inputs.nuget_build_patch && matrix.arch == 'x64' && matrix.compiler == 'Clang 19' && matrix.config == 'Release' }}
if: ${{ inputs.nuget_build_patch && matrix.arch == 'x64' && matrix.compiler == 'Clang 20' && matrix.config == 'Release' }}
shell: bash
run: |
python3 -m venv ./wheel_venv
Expand All @@ -268,7 +268,7 @@ jobs:
python3 ./scripts/nuget_patch/patch_library_deps.py "./build/Release/bin/libMeshLibC2.so" "./patched_content/"

- name: Upload NuGet files to Artifacts
if: ${{ inputs.nuget_build_patch && matrix.arch == 'x64' && matrix.compiler == 'Clang 19' && matrix.config == 'Release' }}
if: ${{ inputs.nuget_build_patch && matrix.arch == 'x64' && matrix.compiler == 'Clang 20' && matrix.config == 'Release' }}
uses: actions/upload-artifact@v6
with:
name: DotNetPatchArchiveLinux-x64
Expand Down
1 change: 1 addition & 0 deletions docker/rockylinux8-vcpkgDockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# edit this line to trigger the image rebuild in CI
ARG VCPKG_VERSION=2025.10.17
ARG VCPKG_TRIPLET=x64-linux-meshlib

Expand Down
1 change: 1 addition & 0 deletions docker/rockylinux9-vcpkgDockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# edit this line to trigger the image rebuild in CI
ARG VCPKG_VERSION=2025.10.17
ARG VCPKG_TRIPLET=x64-linux-meshlib

Expand Down
Loading