Testing - Daily vcpkg package validation#605
Merged
dpasukhi merged 1 commit intoOpen-Cascade-SAS:IRfrom Jul 12, 2025
Merged
Conversation
Add daily workflow for configuring OCCT with vcpkg on multiple platforms
There was a problem hiding this comment.
Pull Request Overview
Adds a new daily GitHub Actions workflow to configure OCCT with vcpkg on multiple platforms and refactors shared configuration steps into a composite action.
- Introduce
.github/workflows/daily-ir-vcpkg-configure.ymlto run OCCT configuration daily on the IR branch for Windows, macOS, and Ubuntu. - Create a
configure-occtcomposite action to encapsulate vcpkg setup and CMake configuration per platform. - Update the
build-occtaction to reuse the newconfigure-occtstep instead of duplicating configuration logic.
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/daily-ir-vcpkg-configure.yml | New scheduled workflow for daily OCCT vcpkg configuration on IR branch |
| .github/actions/configure-occt/action.yml | Composite action for setting up vcpkg and running platform-specific CMake |
| .github/actions/build-occt/action.yml | Refactored to invoke configure-occt instead of inline configuration steps |
Comments suppressed due to low confidence (2)
.github/actions/configure-occt/action.yml:111
- The macOS configure step does not include the USE_VTK flag, so the
use-vtkinput isn’t applied. Please add-D USE_VTK=${{ inputs.use-vtk }}to ensure this setting is respected on macOS.
cmake -G "Unix Makefiles" \
.github/workflows/daily-ir-vcpkg-configure.yml:13
- [nitpick] The workflow defines three nearly identical jobs for Windows, macOS, and Linux. Consider using a matrix strategy to reduce duplication and simplify future platform additions.
jobs:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add daily workflow for configuring OCCT with vcpkg on multiple platforms