This patch adds new fetch, and toolchain tasks for the xmlstarlet tool that will be used for Android performance tests. Differential Revision: https://phabricator.services.mozilla.com/D212629
10 lines
186 B
Bash
Executable File
10 lines
186 B
Bash
Executable File
#!/bin/bash -vex
|
|
|
|
set -x -e -v
|
|
|
|
ar vx $MOZ_FETCHES_DIR/xmlstarlet.deb
|
|
tar xvf data.tar.xz
|
|
|
|
mkdir -p $UPLOAD_DIR
|
|
tar -cavf $UPLOAD_DIR/android-xmlstarlet.tar.zst -C ./usr/bin/ xmlstarlet
|