Search found 1771 matches

by mlampert
Tue Dec 26, 2023 12:54 am
Forum: Announcements & Features
Topic: Changing development GIT branch from master to main
Replies: 7
Views: 8314

Re: Changing development GIT branch from master to main

That works yes. If you don't need/use master/main you don't have to check it out and keep updated. Assuming you have your "newBranchName" already checked out:

Code: Select all

* git fetch -p upstream
* git rebase upstream/main
by mlampert
Sat Sep 23, 2023 6:46 pm
Forum: Packaging
Topic: [WIP] OpenBSD Port
Replies: 55
Views: 26196

Re: [WIP] OpenBSD Port

@sliptonic, @mlampert: Would it be an issue to use an external libarea instead of the one included in the FreeCAD sources? The FreeBSD port appears to be doing so, but with the Heeksa/libarea and not with danielfalck/libarea which is referenced here . AFAIK libarea hasn't been maintained for quite ...
by mlampert
Sun Sep 10, 2023 12:59 am
Forum: Developers corner
Topic: filesystem encoding unit test
Replies: 0
Views: 345

filesystem encoding unit test

Latest update I did brought in a filesystem encoding unit test which fails for me. Probably because I set

Code: Select all

LC_ALL=C
on all of my machines ever since somebody decided it was a good idea to ignore case and punctuation when comparing strings.

Not a big issue, just an FYI.
by mlampert
Sat Sep 09, 2023 11:52 pm
Forum: Install / Compile
Topic: [solved] How to add Rust library to the CI build
Replies: 8
Views: 1580

Re: [solved] How to add Rust library to the CI build

The library maintainer split the repository and eliminated the dependency for the production code. If you want to buy somebody a beer, send him some love, great library, great developer: https://github.com/jbuckmccready Happy to report that I finally made it through CI on all 3 targets - phew, what ...
by mlampert
Sat Sep 09, 2023 11:17 pm
Forum: Install / Compile
Topic: [solved] Is there cmake flag for the "CI build" ?
Replies: 1
Views: 417

Re: Is there cmake flag for the "CI build" ?

nm - I added `extraParameters` to the configure cmake action, which is probably the right thing to do anyway.
by mlampert
Sat Sep 09, 2023 10:22 pm
Forum: Install / Compile
Topic: [solved] Is there cmake flag for the "CI build" ?
Replies: 1
Views: 417

[solved] Is there cmake flag for the "CI build" ?

For the CI build on github I want/need to set things up but don't want to force anybody else to _have_to_ setup their development box the same way, which might not even be possible if the build is on anything other than Debian based. Basically I want to change the default value of an option dependin...
by mlampert
Fri Sep 08, 2023 10:24 pm
Forum: Install / Compile
Topic: [solved] How to add Rust library to the CI build
Replies: 8
Views: 1580

Re: How to add Rust library to the CI build

'k, this is not an issue with the workflow but (not unexpected) a user error. Installing those packages is not enough one also needs to force cargo to actually use those. The reason the build was succeeding on my local machine was because cargo and rust sprinkle the filesystem with hidden stashes of...
by mlampert
Thu Sep 07, 2023 3:21 am
Forum: Path/CAM
Topic: Efficient Way to "Lay Flat" Pieces for Path
Replies: 2
Views: 524

Re: Efficient Way to "Lay Flat" Pieces for Path

If you're working with the UI at all the simplest way is probably at Job creation, or when editing a Job. Once you're selected the face you can press the "Z-Axis" button and it will make that face aligned in the XY plane. layout.png If you're not using the UI you can check the code that do...
by mlampert
Thu Sep 07, 2023 3:03 am
Forum: Install / Compile
Topic: [solved] How to add Rust library to the CI build
Replies: 8
Views: 1580

Re: How to add Rust library to the CI build

It's almost like it depends on where/when the build is being run and depending on "something" it works or it doesn't. I guess what I mean by this is that the action "CMake Build" is not executed in the same environment as "Install FreeCAD dependencies" of the same work...
by mlampert
Thu Sep 07, 2023 2:38 am
Forum: Install / Compile
Topic: [solved] How to add Rust library to the CI build
Replies: 8
Views: 1580

Re: How to add Rust library to the CI build

chennes I think there's something else going. The linux build still occasionally fails (ignore Windows for now). Checking the logs of this run https://github.com/mlampert/FreeCAD/actions/runs/6104597253/job/16566840800 clearly indicate that the package librust-num-traits-dev is successfully downloa...