2020-06-07 19:49:06 +00:00
|
|
|
image: registry.gitlab.com/satoshilabs/trezor/trezor-firmware/trezor-firmware-env.nix
|
2019-09-09 13:10:22 +00:00
|
|
|
|
2019-08-14 14:27:17 +00:00
|
|
|
# Releases
|
2019-09-09 13:10:22 +00:00
|
|
|
|
2019-08-14 14:27:17 +00:00
|
|
|
release core fw regular deploy:
|
2019-09-09 13:10:22 +00:00
|
|
|
stage: deploy
|
|
|
|
variables:
|
2019-08-14 14:27:17 +00:00
|
|
|
DEPLOY_DIRECTORY: "releases/firmwares"
|
|
|
|
before_script: [] # no pipenv
|
2020-08-17 18:37:08 +00:00
|
|
|
needs: ["core fw regular build"]
|
2019-08-14 14:27:17 +00:00
|
|
|
script:
|
|
|
|
- export VERSION=$(./tools/version.sh core/embed/firmware/version.h)
|
|
|
|
- export NAME="trezor-fw-regular-$VERSION-$CI_COMMIT_SHORT_SHA.bin"
|
|
|
|
- echo "Deploying to ${DEPLOY_DIRECTORY}/$NAME"
|
|
|
|
- mkdir -p "${DEPLOY_BASE_DIR}/${DEPLOY_DIRECTORY}"
|
|
|
|
- rsync --delete -va $NAME "${DEPLOY_BASE_DIR}/${DEPLOY_DIRECTORY}/$NAME"
|
|
|
|
only:
|
2020-04-09 12:08:56 +00:00
|
|
|
- /^core\//
|
2019-08-14 14:27:17 +00:00
|
|
|
except:
|
|
|
|
- branches # run for tags only
|
|
|
|
tags:
|
|
|
|
- deploy
|
|
|
|
|
|
|
|
release core fw btconly deploy:
|
|
|
|
stage: deploy
|
|
|
|
variables:
|
|
|
|
DEPLOY_DIRECTORY: "releases/firmwares"
|
|
|
|
before_script: [] # no pipenv
|
2020-08-17 18:37:08 +00:00
|
|
|
needs: ["core fw btconly build"]
|
2019-08-14 14:27:17 +00:00
|
|
|
script:
|
|
|
|
- export VERSION=$(./tools/version.sh core/embed/firmware/version.h)
|
|
|
|
- export NAME="trezor-fw-btconly-$VERSION-$CI_COMMIT_SHORT_SHA.bin"
|
|
|
|
- echo "Deploying to ${DEPLOY_DIRECTORY}/$NAME"
|
|
|
|
- mkdir -p "${DEPLOY_BASE_DIR}/${DEPLOY_DIRECTORY}"
|
|
|
|
- rsync --delete -va $NAME "${DEPLOY_BASE_DIR}/${DEPLOY_DIRECTORY}/$NAME"
|
|
|
|
only:
|
2020-04-09 12:08:56 +00:00
|
|
|
- /^core\//
|
2019-08-14 14:27:17 +00:00
|
|
|
except:
|
|
|
|
- branches # run for tags only
|
|
|
|
tags:
|
|
|
|
- deploy
|
|
|
|
|
|
|
|
release legacy fw regular deploy:
|
|
|
|
stage: deploy
|
|
|
|
variables:
|
|
|
|
DEPLOY_DIRECTORY: "releases/firmwares"
|
|
|
|
before_script: [] # no pipenv
|
2020-08-17 18:37:08 +00:00
|
|
|
needs: ["legacy fw regular build"]
|
2019-08-14 14:27:17 +00:00
|
|
|
script:
|
|
|
|
- export VERSION=$(./tools/version.sh legacy/firmware/version.h)
|
|
|
|
- export NAME="trezor-fw-regular-$VERSION-$CI_COMMIT_SHORT_SHA.bin"
|
|
|
|
- echo "Deploying to ${DEPLOY_DIRECTORY}/$NAME"
|
|
|
|
- mkdir -p "${DEPLOY_BASE_DIR}/${DEPLOY_DIRECTORY}"
|
|
|
|
- rsync --delete -va $NAME "${DEPLOY_BASE_DIR}/${DEPLOY_DIRECTORY}/$NAME"
|
|
|
|
only:
|
2020-04-09 12:08:56 +00:00
|
|
|
- /^legacy\//
|
2019-08-14 14:27:17 +00:00
|
|
|
except:
|
|
|
|
- branches # run for tags only
|
|
|
|
tags:
|
|
|
|
- deploy
|
|
|
|
|
2020-06-03 15:13:50 +00:00
|
|
|
release legacy fw btconly deploy:
|
2019-08-14 14:27:17 +00:00
|
|
|
stage: deploy
|
|
|
|
variables:
|
|
|
|
DEPLOY_DIRECTORY: "releases/firmwares"
|
|
|
|
before_script: [] # no pipenv
|
2020-08-17 18:37:08 +00:00
|
|
|
needs: ["legacy fw btconly build"]
|
2019-08-14 14:27:17 +00:00
|
|
|
script:
|
|
|
|
- export VERSION=$(./tools/version.sh legacy/firmware/version.h)
|
|
|
|
- export NAME="trezor-fw-btconly-$VERSION-$CI_COMMIT_SHORT_SHA.bin"
|
|
|
|
- echo "Deploying to ${DEPLOY_DIRECTORY}/$NAME"
|
|
|
|
- mkdir -p "${DEPLOY_BASE_DIR}/${DEPLOY_DIRECTORY}"
|
|
|
|
- rsync --delete -va $NAME "${DEPLOY_BASE_DIR}/${DEPLOY_DIRECTORY}/$NAME"
|
2020-06-19 19:34:31 +00:00
|
|
|
only:
|
|
|
|
- /^legacy\//
|
|
|
|
except:
|
|
|
|
- branches # run for tags only
|
|
|
|
tags:
|
|
|
|
- deploy
|
|
|
|
|
|
|
|
release core fw regular debug deploy:
|
|
|
|
stage: deploy
|
|
|
|
variables:
|
|
|
|
DEPLOY_DIRECTORY: "releases/firmwares"
|
|
|
|
before_script: [] # no pipenv
|
2020-08-17 18:37:08 +00:00
|
|
|
needs: ["core fw regular debug build"]
|
2020-06-19 19:34:31 +00:00
|
|
|
script:
|
|
|
|
- export VERSION=$(./tools/version.sh core/embed/firmware/version.h)
|
|
|
|
- export NAME="trezor-fw-regular-debug-$VERSION-$CI_COMMIT_SHORT_SHA.bin"
|
|
|
|
- echo "Deploying to ${DEPLOY_DIRECTORY}/$NAME"
|
|
|
|
- mkdir -p "${DEPLOY_BASE_DIR}/${DEPLOY_DIRECTORY}"
|
|
|
|
- rsync --delete -va $NAME "${DEPLOY_BASE_DIR}/${DEPLOY_DIRECTORY}/$NAME"
|
|
|
|
only:
|
|
|
|
- /^core\//
|
|
|
|
except:
|
|
|
|
- branches # run for tags only
|
|
|
|
tags:
|
|
|
|
- deploy
|
|
|
|
|
2020-07-15 09:43:10 +00:00
|
|
|
release legacy fw regular debug deploy:
|
2020-06-19 19:34:31 +00:00
|
|
|
stage: deploy
|
|
|
|
variables:
|
|
|
|
DEPLOY_DIRECTORY: "releases/firmwares"
|
|
|
|
before_script: [] # no pipenv
|
2020-08-17 18:37:08 +00:00
|
|
|
needs: ["legacy fw regular debug build"]
|
2020-06-19 19:34:31 +00:00
|
|
|
script:
|
|
|
|
- export VERSION=$(./tools/version.sh legacy/firmware/version.h)
|
|
|
|
- export NAME="trezor-fw-regular-debug-$VERSION-$CI_COMMIT_SHORT_SHA.bin"
|
|
|
|
- echo "Deploying to ${DEPLOY_DIRECTORY}/$NAME"
|
|
|
|
- mkdir -p "${DEPLOY_BASE_DIR}/${DEPLOY_DIRECTORY}"
|
|
|
|
- rsync --delete -va $NAME "${DEPLOY_BASE_DIR}/${DEPLOY_DIRECTORY}/$NAME"
|
2020-07-15 09:43:10 +00:00
|
|
|
only:
|
|
|
|
- /^legacy\//
|
|
|
|
except:
|
|
|
|
- branches # run for tags only
|
|
|
|
tags:
|
|
|
|
- deploy
|
|
|
|
|
|
|
|
release legacy fw btconly debug deploy:
|
|
|
|
stage: deploy
|
|
|
|
variables:
|
|
|
|
DEPLOY_DIRECTORY: "releases/firmwares"
|
|
|
|
before_script: [] # no pipenv
|
2020-08-17 18:37:08 +00:00
|
|
|
needs: ["legacy fw btconly debug build"]
|
2020-07-15 09:43:10 +00:00
|
|
|
script:
|
|
|
|
- export VERSION=$(./tools/version.sh legacy/firmware/version.h)
|
|
|
|
- export NAME="trezor-fw-btconly-debug-$VERSION-$CI_COMMIT_SHORT_SHA.bin"
|
|
|
|
- echo "Deploying to ${DEPLOY_DIRECTORY}/$NAME"
|
|
|
|
- mkdir -p "${DEPLOY_BASE_DIR}/${DEPLOY_DIRECTORY}"
|
|
|
|
- rsync --delete -va $NAME "${DEPLOY_BASE_DIR}/${DEPLOY_DIRECTORY}/$NAME"
|
2019-08-14 14:27:17 +00:00
|
|
|
only:
|
2020-04-09 12:08:56 +00:00
|
|
|
- /^legacy\//
|
2019-08-14 14:27:17 +00:00
|
|
|
except:
|
|
|
|
- branches # run for tags only
|
|
|
|
tags:
|
|
|
|
- deploy
|
|
|
|
|
|
|
|
# Upgrade tests
|
|
|
|
|
|
|
|
upgrade tests core deploy:
|
|
|
|
stage: deploy
|
|
|
|
variables:
|
|
|
|
DEPLOY_PATH: "${DEPLOY_BASE_DIR}/upgrade_tests"
|
2019-09-09 13:10:22 +00:00
|
|
|
before_script: [] # no pipenv
|
2020-08-17 18:37:08 +00:00
|
|
|
needs: ["core unix frozen debug build"]
|
2019-09-09 13:10:22 +00:00
|
|
|
script:
|
2020-04-16 14:43:19 +00:00
|
|
|
- TAG=`git tag --points-at HEAD | grep "core" | sed "s/\//-/"`
|
|
|
|
- "[[ $TAG == '' ]] && echo 'Tag is not core/*: exiting.' && exit 1"
|
|
|
|
- DEST=${DEPLOY_PATH}/trezor-emu-$TAG
|
2019-09-09 13:10:22 +00:00
|
|
|
- echo "Deploying to $DEST"
|
2020-07-27 14:59:51 +00:00
|
|
|
- rsync --delete -va core/build/unix/trezor-emu-core "$DEST"
|
2019-08-14 14:27:17 +00:00
|
|
|
only:
|
2020-04-09 12:08:56 +00:00
|
|
|
- /^core\//
|
2019-08-14 14:27:17 +00:00
|
|
|
except:
|
|
|
|
- branches # run for tags only
|
2019-09-09 13:10:22 +00:00
|
|
|
tags:
|
|
|
|
- deploy
|
|
|
|
|
2019-08-14 14:27:17 +00:00
|
|
|
upgrade tests legacy deploy:
|
2019-09-09 13:10:22 +00:00
|
|
|
stage: deploy
|
|
|
|
variables:
|
2019-08-14 14:27:17 +00:00
|
|
|
DEPLOY_PATH: "${DEPLOY_BASE_DIR}/upgrade_tests"
|
2019-09-09 13:10:22 +00:00
|
|
|
before_script: [] # no pipenv
|
2020-08-17 18:37:08 +00:00
|
|
|
needs: ["legacy emu regular build"]
|
2019-09-09 13:10:22 +00:00
|
|
|
script:
|
2020-04-16 14:43:19 +00:00
|
|
|
- TAG=`git tag --points-at HEAD | grep "legacy" | sed "s/\//-/"`
|
|
|
|
- "[[ $TAG == '' ]] && echo 'Tag is not legacy/*: exiting.' && exit 1"
|
|
|
|
- DEST=${DEPLOY_PATH}/trezor-emu-$TAG
|
2019-09-09 13:10:22 +00:00
|
|
|
- echo "Deploying to $DEST"
|
|
|
|
- rsync --delete -va legacy/firmware/trezor.elf "$DEST"
|
2019-08-14 14:27:17 +00:00
|
|
|
only:
|
2020-04-09 12:08:56 +00:00
|
|
|
- /^legacy\//
|
2019-08-14 14:27:17 +00:00
|
|
|
except:
|
|
|
|
- branches # run for tags only
|
2019-09-09 13:10:22 +00:00
|
|
|
tags:
|
|
|
|
- deploy
|
2019-12-30 13:09:18 +00:00
|
|
|
|
|
|
|
# UI tests
|
|
|
|
|
|
|
|
ui tests core fixtures deploy:
|
|
|
|
stage: deploy
|
|
|
|
variables:
|
|
|
|
DEPLOY_PATH: "${DEPLOY_BASE_DIR}/ui_tests/"
|
|
|
|
before_script: [] # no pipenv
|
2020-08-17 18:37:08 +00:00
|
|
|
needs: ["core device ui test"]
|
2019-12-30 13:09:18 +00:00
|
|
|
script:
|
|
|
|
- echo "Deploying to $DEPLOY_PATH"
|
2020-01-06 14:59:12 +00:00
|
|
|
- rsync --delete -va ci/ui_test_records/* "$DEPLOY_PATH"
|
2019-12-30 13:09:18 +00:00
|
|
|
tags:
|
|
|
|
- deploy
|