github.com/tri-stone/burrow@v0.25.0/tests/jobs_fixtures/app38-deploy_bin_file_with_linkage_to_libraries/deploy.yaml (about)

     1  jobs:
     2  
     3  #todo, change these to compile jobs
     4  - name: deployLibNormal
     5    deploy:
     6        contract: contract_and_lib.sol
     7        instance: Set
     8  
     9  - name: deployContractNormal
    10    deploy:
    11        contract: contract_and_lib.sol
    12        libraries: Set:$deployLibNormal
    13        instance: C
    14  
    15    #now that we have bins, lets redo this with them
    16  
    17  - name: deployLibBin
    18    deploy:
    19        contract: Set.bin
    20  
    21  - name: deployContractNormal
    22    deploy:
    23        contract: C.bin
    24        libraries: Set:$deployLibBin