with Nuke.Common v8.0.0 I used to be able to execute a single target and skip all dependencies with the --skip parameter.
I have a small sample build with two targets where "Compile" depends on "Dependency".
When run with Nuke.Common v8.0.0 I get this:
./build.cmd Compile --skip
═══════════════════════════════════════
Target Status Duration
───────────────────────────────────────
Dependency Skipped // Skipped: via parameter
Compile Succeeded < 1sec
───────────────────────────────────────
Total < 1sec
═══════════════════════════════════════
after updating to Nuke.Common v8.1.0, the same command also skips the explicitly invoked target:
./build.cmd Compile --skip
═══════════════════════════════════════
Target Status Duration
───────────────────────────────────────
Dependency Skipped // Skipped: via parameter
Compile Skipped // Skipped: via parameter
───────────────────────────────────────
Total < 1sec
═══════════════════════════════════════
Usage Information
Nuke.Common v8.1
Description
with Nuke.Common v8.0.0 I used to be able to execute a single target and skip all dependencies with the --skip parameter.
I have a small sample build with two targets where "Compile" depends on "Dependency". When run with Nuke.Common v8.0.0 I get this:
./build.cmd Compile --skip
═══════════════════════════════════════ Target Status Duration ─────────────────────────────────────── Dependency Skipped // Skipped: via parameter Compile Succeeded < 1sec ─────────────────────────────────────── Total < 1sec ═══════════════════════════════════════after updating to Nuke.Common v8.1.0, the same command also skips the explicitly invoked target:
./build.cmd Compile --skip
═══════════════════════════════════════ Target Status Duration ─────────────────────────────────────── Dependency Skipped // Skipped: via parameter Compile Skipped // Skipped: via parameter ─────────────────────────────────────── Total < 1sec ═══════════════════════════════════════Reproduction Steps
./build.cmd Compile --skip
Expected Behavior
target "Compile" should execute and "Dependency" should be skipped
Actual Behavior
Both targets are skipped
Regression?
yes
Known Workarounds
No response
Could you help with a pull-request?
No