Skip to content
Snippets Groups Projects
Select Git revision
  • 54d20eff9a170b9aa80ea43040522f0e6bb605c4
  • main default protected
2 results

README.md

Blame
  • build-plugins.sh 463 B
    #!/bin/sh
    
    set -e
    
    CI_COMMIT_SHORT_SHA=${CI_COMMIT_SHORT_SHA:-local}
    
    for dir in deadlock-plugins/*/; do
        echo
        echo "==============================================="
        echo "Building $dir"
        echo "==============================================="
        echo
        cd $dir
        CURRENT_PLUGIN_DIR=$(basename "$PWD")
        ./install.sh
        ./build.sh CI_COMMIT_SHORT_SHA
        cp -f *.vsix ../../plugins/$CURRENT_PLUGIN_DIR-$CI_COMMIT_SHORT_SHA.vsix
        cd -
    done