Code Monkey home page Code Monkey logo

Comments (1)

dannymcgee avatar dannymcgee commented on July 17, 2024

Hey there, sorry for the long silence. >_<

I have been noticing this too lately, it's pretty annoying. Unfortunately I'm not sure if there's a good "quick fix" at the moment. You can ask Nx to cache the artifacts produced by a build command, like this:

// project.json
{
  "name": "my-cargo-project",
  "targets": {
    "build": {
      "executor": "@nxrs/cargo:build",
      "options": {},
      "configurations": {
        "dev": {
          "profile": "dev"
        },
        "release": {
          "profile": "release"
        }
      },
      "defaultConfiguration": "local",
      "outputs": ["{workspaceRoot}/target/{{ options.profile }}"]
//    ^^^^^^^^^ This is the option you need to set
    }
    // ...
  }
}

But Nx will then store a copy of your entire target/<profile> directory in .nx/cache for every unique build output it sees. Rust's target directories can easily become pretty huge, and Nx keeps those cached outputs around indefinitely, so this can very quickly explode the disk space consumed by a project.

There's another problem with this too — the target/<profile> directories include all of your workspace's compiled dependencies, so you could end up in a situation like this:

  • project-a was built a long time ago but hasn't been modified since then
  • project-b was built more recently, with updated versions of some shared crates.io dependencies
  • project-a does not depend on project-b, so that old cache for project-a is still considered valid
  • You run nx build project-a which is a cache hit for that older build
  • The newer versions of your compiled dependencies are overwritten by the older cached outputs

This is likely fixable by adding those external crates.io dependencies to the dependency graph, but it looks like that API was not exposed until Nx v19.0.0, which just released yesterday, and I'd like to let that simmer and mature a bit before I upgrade all of my projects to it. This is on my radar though — thanks for the report!

In the meantime, this can be worked around by passing --skip-nx-cache to any build commands that may require a forced update. I know this is far from ideal, but cargo does have its own caching and incremental compilation system, so it shouldn't slow your builds down too much. But it does potentially make CI/CD kind of a pain to deal with.

from cargo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.