This file has been truncated, but you can view the full file.
This file contains hidden or 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
| 2026-05-05T22:26:18.5732682Z Current runner version: '2.334.0' | |
| 2026-05-05T22:26:18.5767591Z ##[group]Runner Image Provisioner | |
| 2026-05-05T22:26:18.5768872Z Hosted Compute Agent | |
| 2026-05-05T22:26:18.5769953Z Version: 20260213.493 | |
| 2026-05-05T22:26:18.5770945Z Commit: 5c115507f6dd24b8de37d8bbe0bb4509d0cc0fa3 | |
| 2026-05-05T22:26:18.5772386Z Build Date: 2026-02-13T00:28:41Z | |
| 2026-05-05T22:26:18.5773682Z Worker ID: {f53c6982-7ec6-41f3-89e0-cc119d9ed87d} | |
| 2026-05-05T22:26:18.5774817Z Azure Region: westus | |
| 2026-05-05T22:26:18.5775609Z ##[endgroup] |
This file contains hidden or 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
| build-steps.d/3200_create-raw-image --flavor whonix-gateway-cli --target qcow2 --type vm --arch amd64 --connection clearnet --repo false --report false --sanity-tests true --freshness current | |
| + set -e | |
| + true 'INFO: Currently running script: build-steps.d/3200_create-raw-image --flavor' whonix-gateway-cli --target qcow2 --type vm --arch amd64 --connection clearnet --repo false --report false --sanity-tests true --freshness current | |
| +++ dirname build-steps.d/3200_create-raw-image | |
| ++ cd build-steps.d | |
| ++ pwd | |
| + MYDIR=/home/user/17.4.0.3-developers-only/build-steps.d | |
| + cd /home/user/17.4.0.3-developers-only/build-steps.d | |
| + cd .. | |
| + cd help-steps |
This file contains hidden or 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
| + true 'INFO: Currently running script: ./derivative-maker --flavor' whonix-gateway-cli --target qcow2 --arch amd64 --type vm --repo false | |
| +++ dirname ./derivative-maker | |
| ++ cd . | |
| ++ pwd | |
| + MYDIR=/home/user/derivative-maker | |
| + cd /home/user/derivative-maker | |
| + source ./help-steps/pre | |
| ++ true './help-steps/pre INFO: begin' | |
| ++ test -o xtrace | |
| ++ xtrace_was_set=true |
This file contains hidden or 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 | |
| BUILD_DIR=${PWD}/build | |
| CUSTOM_VER="" | |
| REPO="FreeRDP/FreeRDP" | |
| GIT_URL="https://api.github.com/repos/${REPO}/tags" | |
| BRANCH=$(curl -s ${GIT_URL} | jq '.[]' | jq -r '.name' | grep -Pm1 "${CUSTOM_VER}") | |
| mkdir -p "$BUILD_DIR" | |
| rm -rf "$BUILD_DIR/*" |