#!/usr/bin/env bash1# Copyright 2022 The ChromiumOS Authors2# Use of this source code is governed by a BSD-style license that can be3# found in the LICENSE file.45set -ex67BUILD_DIR=$(mktemp -d)8cd "$BUILD_DIR" || exit 1910CIPD_ARGS=(11-pkg-var "description:cargo-nextest modern test runner for cargo"12-install-mode copy13-ref latest14)151617cd $(mktemp -d)18curl -L "https://get.nexte.st/latest/windows" | jar xv19cipd create -in "." -name "crosvm/cargo-nextest/windows-amd64" "${CIPD_ARGS[@]}"2021cd $(mktemp -d)22curl -L "https://get.nexte.st/latest/linux" | tar zxv23cipd create -in "." -name "crosvm/cargo-nextest/linux-amd64" "${CIPD_ARGS[@]}"24252627