Projects STRLCPY routeros-scanner Commits fffa8348
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    .pipelines/pipeline.user.linux.official.yml
    skipped 14 lines
    15 15   tag: "alpha"
    16 16   system: "patch"
    17 17   
     18 +signing_options:
     19 + profile: 'internal_azure_service'
     20 +
     21 +static_analysis_options:
     22 + binskim_options:
     23 + files_to_scan:
     24 + fxcop_options:
     25 + files_to_scan:
     26 + moderncop_options:
     27 + fail_on_error: false
     28 + files_to_scan:
     29 + policheck_options:
     30 + disable_tool_scan: true
     31 + fail_on_error: false
     32 + files_to_scan:
     33 + - from: 'src'
     34 + include:
     35 + - '**/*.py'
     36 + 
    18 37  restore:
    19 38   commands:
    20 39   - !!defaultcommand
    21  - name: "Install"
     40 + name: "pip install"
    22 41   command: "restore.sh"
    23 42   
     43 +build:
     44 + commands:
     45 + 
     46 +package:
     47 + commands:
     48 + 
     49 +test:
     50 + commands:
     51 + 
     52 +publish:
     53 + commands:
     54 + 
     55 +user_cleanup:
     56 + commands:
  • ■ ■ ■ ■ ■
    restore.sh
    1 1  #!/bin/bash
    2 2   
    3  -cur_dir="$(dirname ${BASH_SOURCE[0]})"
    4  -pip install -r $cur_dir/../../requirements.txt
     3 +# exit immediately when one publish failed
     4 +set -e
     5 + 
     6 +ROOT_DIR="$(dirname $0)/.."
     7 + 
     8 +pip install -r "$ROOT_DIR/requirements.txt"
Please wait...
Page is in error, reload to recover