Skip to content

Commit 829354a

Browse files
committed
Prepare for merge
CURA-11622
1 parent fb373c9 commit 829354a

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/conan-package.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ on:
2323
- '[0-9].[0-9][0-9]*'
2424

2525
jobs:
26-
# FIXME: Use main once merged
2726
conan-package:
28-
uses: ultimaker/cura-workflows/.github/workflows/conan-package.yml@CURA-11622_conan_v2
27+
uses: ultimaker/cura-workflows/.github/workflows/conan-package.yml@main
2928
secrets: inherit

.github/workflows/unit-test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ on:
4747
jobs:
4848
testing:
4949
name: Run unit tests
50-
# FIXME: use main once merged
51-
uses: ultimaker/cura-workflows/.github/workflows/unit-test.yml@CURA-11622_conan_v2
50+
uses: ultimaker/cura-workflows/.github/workflows/unit-test.yml@main
5251
with:
5352
test_use_ctest: true

conanfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def layout(self):
7474

7575
def requirements(self):
7676
if self.options.geometries == "clipper":
77-
self.requires("clipper/6.4.2@ultimaker/cura_11622", transitive_headers=True) # FIXME: use main after merge
77+
self.requires("clipper/6.4.2@ultimaker/stable", transitive_headers=True)
7878
if self.options.geometries == "boost" or self.options.geometries == "clipper":
7979
self.requires("boost/1.83.0", transitive_headers=True)
8080
if self.options.optimizer == "nlopt":
@@ -98,7 +98,7 @@ def validate(self):
9898
)
9999

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

0 commit comments

Comments
 (0)