test-day-177

Today’s Task

  • Build Script User Friendly Changes

    • Extract Common Methods for PCT jobs
    • Remove Audit Tool from old repo
    • Extract Common methods for T1 image release scripts
      • Catalog
      • Nexus
      • Nucleus
  • Slack Bot

    • run on AWS
    • Try Demo Full Functions
    • Basic Function

Additional Task

  • Deploy LBCP on STG from test branch
  • Fix LBCP scripts to push image to AWS
  • Ask Jen to help creating repositories for LBCP on AWS

Thought

mvn clean install - build the whole multi-module project

mvn clean install -pl - build a single or a set modules

mvn clean install -pl -am - build a single or a set modules and their dependencies

1
2
3
4
declare -A animals=( ["moo"]="cow" ["woof"]="dog")
animals['key']='value'
"${animals[@]}" #expand the values
"${!animals[@]}" #expand the keys