Git Product home page Git Product logo

Comments (3)

matkoch avatar matkoch commented on June 2, 2024

I'm expecting a complete sample.

from nuke.

DWIAltonaAnalytics avatar DWIAltonaAnalytics commented on June 2, 2024

all right:

class Build : NukeBuild
{
    /// Support plugins are available for:
    ///   - JetBrains ReSharper        https://nuke.build/resharper
    ///   - JetBrains Rider            https://nuke.build/rider
    ///   - Microsoft VisualStudio     https://nuke.build/visualstudio
    ///   - Microsoft VSCode           https://nuke.build/vscode

    public static int Main () => Execute<Build>(x => x.Compile);

    Target Restore => _ => _
        .Executes(() =>
        {
            Log.Error("this should not run");
        });

    Target Compile => _ => _
        .OnlyWhenStatic(()=>IsServerBuild)
        .DependsOn(Restore)
        .Executes(() =>
        {
            Log.Warning("this shouldn't run either");
        });

}

I would expect both targets to be skipped if I run nuke localy.

but what I get is:

PowerShell Desktop version 5.1.19041.3693
Microsoft (R) .NET SDK version 8.0.100
​
███╗   ██╗██╗   ██╗██╗  ██╗███████╗                                   
████╗  ██║██║   ██║██║ ██╔╝██╔════╝                                   
██╔██╗ ██║██║   ██║█████╔╝ █████╗                                     
██║╚██╗██║██║   ██║██╔═██╗ ██╔══╝                                     
██║ ╚████║╚██████╔╝██║  ██╗███████╗                                   
╚═╝  ╚═══╝ ╚═════╝ ╚═╝  ╚═╝╚══════╝                                   
​                                                                     
NUKE Execution Engine version 7.0.6 (Windows,.NETCoreApp,Version=v7.0)
​                                                                     
​
╬════════════
║ Restore
╬═══
​
16:19:38 [ERR] this should not run
​
╬══════════════════════
║ Errors & Warnings
╬═════════════
​
[ERR] Restore: this should not run
​
═══════════════════════════════════════
Target             Status      Duration
───────────────────────────────────────
Restore            Succeeded     < 1sec
Compile            Skipped                // OnlyWhen: IsServerBuild
───────────────────────────────────────
Total                            < 1sec
═══════════════════════════════════════
​
Build succeeded on 23.11.2023 16:19:38. \(^ᴗ^)/

from nuke.

DWIAltonaAnalytics avatar DWIAltonaAnalytics commented on June 2, 2024

strangely, it worked on our gitlab runner as expected:

CleanCoverage Skipped // Skipped: because of CleanAll
CleanAll Skipped // OnlyWhen: Rebuild

will test locally again and close if confirmed fixed.

from nuke.

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.