Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: keith/rules_multirun
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.11.0
Choose a base ref
...
head repository: keith/rules_multirun
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.12.0
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Apr 18, 2025

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

Commits on May 1, 2025

  1. Expand make variables in environment and arguments (#73)

    This way you can use `$(BINDIR)` and it will be correctly replaced
    keith authored May 1, 2025
    Configuration menu
    Copy the full SHA
    946e617 View commit details
    Browse the repository at this point in the history
  2. Allow resolving rlocations in env or arguments (#74)

    This allows you to use:
    
    ```bzl
    arguments = ["$$(rlocation $(rlocationpath :foo))"],
    environment = {"FOO": "$$(rlocation $(rlocationpath :foo))"},
    ```
    
    To handle issues with path resolution when also cd'ing into the
    workspace root, manually or with `run_from_workspace_root = True`.
    Previously doing `$(location` or any other variant wouldn't work for
    external tools in this case because the path would be something like
    `external/foo/bar` which wouldn't exist in the root of the repo.
    
    These arguments don't get full shell escaping anymore but that should be
    fine and is something the user has to handle instead
    keith authored May 1, 2025
    Configuration menu
    Copy the full SHA
    fa966a6 View commit details
    Browse the repository at this point in the history
Loading