Replies: 4 comments 4 replies
-
I'll leave it there for the moment.. The current status is:
|
Beta Was this translation helpful? Give feedback.
-
That’s cool. I had my share of fighting with it too, and we can add builds over time. |
Beta Was this translation helpful? Give feedback.
-
I did manage to build a macOS version over at my project : https://github.com/larsnaesbye/Tempus_port/actions/runs/3576992909/jobs/6015463510 |
Beta Was this translation helpful? Give feedback.
-
It seems like this tool might do the job better. The author uses it to build their own code quality tool. |
Beta Was this translation helpful? Give feedback.
-
@larsnaesbye,
For information, I had to introduce the
SRC_DIR
variable to the release script. "rinex" is a "cargo workspace" and this is how we define the subdirectories. In this scenario, we will get the "rinex-cli" binary generated. Ideally, we should come up with a final script where we also build the "crx2rnx" and "rnx2crx" binariesthe Windows binary works, it's probably the most mandatory
then MacOS does compile but it seems the publication is in failure.
And I think the problem is related to the rust builder.. It's like the previous "windows" job created a local file, and we cannot overwrite it. But I might be wrong..
"cp: can't create directory '/github/workspace/output/rinex-cli': File exists"
the linux job is in failure due to the rinex-cli "libfontconfig-dev" dependency.
The dependency is met. But
pkg-config
does not locate it.We simply need to specify the library location, either by an env. variable or via
pkg-config
. I should be able to fix thatBeta Was this translation helpful? Give feedback.
All reactions