Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add example pipeline for Monorepo #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Add example pipeline for Monorepo #3

wants to merge 1 commit into from

Conversation

matejko0077
Copy link

Validate the tools we need

  | if [[ ! -x $(which sha1sum) ]]; then
  | error "Missing tool: sha1sum (Linux: apt-get install coreutils; Mac: port install md5sha1sum)"
  | fi
  |  
  | # Parse input params
  | OUT="$1"
  | [[ -z "$OUT" ]] && error "Missing output.xml name."
  | shift
  |  
  | # Get the schema type. Must be either "repository" or "addon".
  | SCHEMA="$1"
  | [[ ! -f "$SCHEMA" ]] && error "Invalid XML schema name: $SCHEMA."
  | shift
  |  
  | # Get XML:NS for SDK from the schema
  | # This will be something like "http://schemas.android.com/sdk/android/addon/3"
  | XMLNS=$(sed -n '/xmlns:sdk="/s/."(.)"./\1/p' "$SCHEMA")
  | [[ -z "$XMLNS" ]] && error "Failed to find xmlns:sdk in $SCHEMA."
  | echo "## Using xmlns:sdk=$XMLNS"
  |  
  | # Extract the schema version number from the XMLNS, e.g. it would extract "3"
  | XSD_VERSION="${XMLNS##
/}"
  |  
 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant