Last active
July 2, 2019 19:03
-
-
Save EmbeddedAndroid/dad8b5cb212323e5e28a71fc3c909470 to your computer and use it in GitHub Desktop.
jtest pipeline example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -eu | |
echo "steps:" | |
for TEST in $TESTS; do | |
cat <<EOF | |
- trigger: "jtest" | |
label: "${TARGET}-${TEST}-${FW_VER}" | |
build: | |
env: | |
TARGET: "${TARGET}" | |
FW_VER: "${FW_VER}" | |
RUN_ID: "${RUN_ID}" | |
TEST: "${TEST}" | |
EXTERNAL_TEST_REPO: "${EXTERNAL_TEST_REPO}" | |
EXTERNAL_TEST_BRANCH: "${EXTERNAL_TEST_BRANCH}" | |
EOF | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment