github.com/benchkram/bob@v0.0.0-20240314204020-b7a57f2f9be9/test/e2e/task-decoration/with_decoration/bob.yaml (about)

     1  nixpkgs: https://github.com/NixOS/nixpkgs/archive/eeefd01d4f630fcbab6588fe3e7fffe0690fbb20.tar.gz
     2  
     3  import:
     4    - second
     5  build:
     6    # The `build` from second gets decorated with before
     7    # This mean that `second/build` will depend on before and second/hello
     8    second/build:
     9      dependsOn: [ before ]
    10    before:
    11      cmd: |-
    12        touch textfile_before
    13        echo "Before!" > textfile_before
    14      target: textfile_before
    15  
    16  
    17    
    18