Skip to content

Commit

Permalink
Prepare for merge
Browse files Browse the repository at this point in the history
CURA-11622
  • Loading branch information
wawanbreton committed Dec 4, 2024
1 parent fb373c9 commit 829354a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/conan-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ on:
- '[0-9].[0-9][0-9]*'

jobs:
# FIXME: Use main once merged
conan-package:
uses: ultimaker/cura-workflows/.github/workflows/conan-package.yml@CURA-11622_conan_v2
uses: ultimaker/cura-workflows/.github/workflows/conan-package.yml@main
secrets: inherit
3 changes: 1 addition & 2 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ on:
jobs:
testing:
name: Run unit tests
# FIXME: use main once merged
uses: ultimaker/cura-workflows/.github/workflows/unit-test.yml@CURA-11622_conan_v2
uses: ultimaker/cura-workflows/.github/workflows/unit-test.yml@main
with:
test_use_ctest: true
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def layout(self):

def requirements(self):
if self.options.geometries == "clipper":
self.requires("clipper/6.4.2@ultimaker/cura_11622", transitive_headers=True) # FIXME: use main after merge
self.requires("clipper/6.4.2@ultimaker/stable", transitive_headers=True)
if self.options.geometries == "boost" or self.options.geometries == "clipper":
self.requires("boost/1.83.0", transitive_headers=True)
if self.options.optimizer == "nlopt":
Expand All @@ -98,7 +98,7 @@ def validate(self):
)

def build_requirements(self):
self.test_requires("standardprojectsettings/[>=0.2.0]@ultimaker/cura_11622") # FIXME: use stable after merge
self.test_requires("standardprojectsettings/[>=0.2.0]@ultimaker/stable")
if not self.conf.get("tools.build:skip_test", False, check_type=bool):
self.test_requires("catch2/[>=3.5.2]")

Expand Down

0 comments on commit 829354a

Please sign in to comment.