Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wip: generic caching mechanism #5

Closed
wants to merge 36 commits into from
Closed

Commits on Oct 22, 2023

  1. Merge pull request sbt#6746 from eed3si9n/wip/sbt-2.x

    sbt 2.x (sbt in Scala 3)
    eed3si9n authored Oct 22, 2023
    Configuration menu
    Copy the full SHA
    11cc8b5 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2023

  1. Configuration menu
    Copy the full SHA
    bc3acd3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    73e3b43 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    eba41fb View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. Deactivate cross-compilation except for utils

    Lower util projects are used by LM and Zinc
    adpi2 committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    1f33b27 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f241fc4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b6510a1 View commit details
    Browse the repository at this point in the history
  4. ignore discarded Unit

    adpi2 committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    9938588 View commit details
    Browse the repository at this point in the history
  5. Fix deadlock in Terminal init

    adpi2 committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    ba6daf1 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2023

  1. Merge pull request sbt#7433 from adpi2/sbt-2-cross-building

    [2.x] Remove cross-building except for lower utils
    eed3si9n authored Nov 24, 2023
    Configuration menu
    Copy the full SHA
    26b9360 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2023

  1. Bump version number

    eed3si9n committed Nov 25, 2023
    Configuration menu
    Copy the full SHA
    6c1b441 View commit details
    Browse the repository at this point in the history
  2. sbt 1.9.7

    eed3si9n committed Nov 25, 2023
    Configuration menu
    Copy the full SHA
    c63aa64 View commit details
    Browse the repository at this point in the history
  3. Add .jvmopts

    eed3si9n committed Nov 25, 2023
    Configuration menu
    Copy the full SHA
    bb26faa View commit details
    Browse the repository at this point in the history
  4. Update to Scalafmt 3.7.14

    eed3si9n committed Nov 25, 2023
    Configuration menu
    Copy the full SHA
    e87e1d6 View commit details
    Browse the repository at this point in the history
  5. Update to Scala 3.3.1

    eed3si9n committed Nov 25, 2023
    Configuration menu
    Copy the full SHA
    f8f8db9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a7d5694 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2023

  1. Configuration menu
    Copy the full SHA
    bde26f6 View commit details
    Browse the repository at this point in the history
  2. Update to lm 2.0.0-alpha12

    eed3si9n committed Nov 26, 2023
    Configuration menu
    Copy the full SHA
    dd2dd44 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0896637 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c838c49 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2023

  1. Disable fork-loader test

    eed3si9n committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    f9686b2 View commit details
    Browse the repository at this point in the history
  2. Update to Zinc 2.0.0-alpha8

    eed3si9n committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    8098702 View commit details
    Browse the repository at this point in the history
  3. Bump version number

    eed3si9n committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    fef08a0 View commit details
    Browse the repository at this point in the history
  4. Fix FileInfo

    eed3si9n committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    81660b6 View commit details
    Browse the repository at this point in the history
  5. Mark actions/doc pending

    eed3si9n committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    a8b4621 View commit details
    Browse the repository at this point in the history
  6. Mark test-artifact pending

    eed3si9n committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    290d8f1 View commit details
    Browse the repository at this point in the history
  7. Fix ivyPaths

    eed3si9n committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    035cc8d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e0e2ffc View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ff48bbf View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2023

  1. Configuration menu
    Copy the full SHA
    7ea0506 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2023

  1. Merge pull request sbt#7444 from adpi2/sbt-2-refactor-execute-2

    [2.x] Reduce abstraction in `Execute` and around (bis)
    adpi2 authored Nov 29, 2023
    Configuration menu
    Copy the full SHA
    8950b92 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2023

  1. Add cache basics

    eed3si9n committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    3de402d View commit details
    Browse the repository at this point in the history
  2. Refactor Attributed to use StringAttributedMap

    For Attributed to be serializable, we need to make AttributeMap string
    only.
    eed3si9n committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    d5f2759 View commit details
    Browse the repository at this point in the history
  3. Implement disk cache

    eed3si9n committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    17ef100 View commit details
    Browse the repository at this point in the history
  4. Rename Package to Pkg

    eed3si9n committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    11920d4 View commit details
    Browse the repository at this point in the history
  5. Virtualize packageBin

    This caches packageTask
    eed3si9n committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    5f558e2 View commit details
    Browse the repository at this point in the history