You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was updating our Dockerized Linux self-hosted agent to the newest release available in DevOps (4.248). The image builds up fine but when ran locally, I run into the following error in step 3 of the startup process.
Connecting to server ...
./config.sh: line 93: 53 Segmentation fault ./bin/Agent.Listener configure "$@"
Upon discovery, I have checked whether this is due to our Dockerfile, but even when I copy the plain example Dockerfile from the documentation, I get the exact same error. That Dockerfile is like so (I only adjusted it to root access):
FROM ubuntu:22.04
RUN apt update && \
apt upgrade -y && \
apt install -y curl git jq libicu70
# Install Azure CLI
RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash
ENV TARGETARCH="linux-arm"
WORKDIR /agent/
COPY ./start.sh ./
RUN chmod +x ./start.sh
USER root
# Another option is to run the agent as root.
ENV AGENT_ALLOW_RUNASROOT="true"
ENTRYPOINT ["./start.sh"]
The used start.sh is a direct copy from the documentation and is as follows:
#!/bin/bashset -e
# Self-hosted agent boilerplate codeif [ -z"${AZP_URL}" ];thenecho1>&2"error: missing AZP_URL environment variable"exit 1
fiif [ -z"${AZP_TOKEN_FILE}" ];thenif [ -z"${AZP_TOKEN}" ];thenecho1>&2"error: missing AZP_TOKEN environment variable"exit 1
fi
AZP_TOKEN_FILE="/home/.token"echo -n "${AZP_TOKEN}">"${AZP_TOKEN_FILE}"fiunset AZP_TOKEN
if [ -n"${AZP_WORK}" ];then
mkdir -p "${AZP_WORK}"ficleanup() {
trap"" EXIT
if [ -e ./config.sh ];then
print_header "Cleanup. Removing Azure Pipelines agent..."# If the agent has some running jobs, the configuration removal process will fail.# So, give it some time to finish the job.whiletrue;do
./config.sh remove --unattended --auth "PAT" --token $(cat "${AZP_TOKEN_FILE}")&&breakecho"Retrying in 30 seconds..."
sleep 30
donefi
}
print_header() {
lightcyan="\033[1;36m"
nocolor="\033[0m"echo -e "\n${lightcyan}$1${nocolor}\n"
}
# Let the agent ignore the token env variablesexport VSO_AGENT_IGNORE="AZP_TOKEN,AZP_TOKEN_FILE"
print_header "1. Determining matching Azure Pipelines agent..."
AZP_AGENT_PACKAGES=$(curl -LsS \ -u user:$(cat "${AZP_TOKEN_FILE}") \ -H "Accept:application/json;" \"${AZP_URL}/_apis/distributedtask/packages/agent?platform=${TARGETARCH}&top=1")
AZP_AGENT_PACKAGE_LATEST_URL=$(echo "${AZP_AGENT_PACKAGES}"| jq -r ".value[0].downloadUrl")if [ -z"${AZP_AGENT_PACKAGE_LATEST_URL}"-o"${AZP_AGENT_PACKAGE_LATEST_URL}"=="null" ];thenecho1>&2"error: could not determine a matching Azure Pipelines agent"echo1>&2"check that account "${AZP_URL}" is correct and the token is valid for that account"exit 1
fi
print_header "2. Downloading and extracting Azure Pipelines agent..."
curl -LsS "${AZP_AGENT_PACKAGE_LATEST_URL}"| tar -xz &wait$!source ./env.sh
trap"cleanup; exit 0" EXIT
trap"cleanup; exit 130" INT
trap"cleanup; exit 143" TERM
print_header "3. Configuring Azure Pipelines agent..."
./config.sh --unattended \
--agent "${AZP_AGENT_NAME:-$(hostname)}" \
--url "${AZP_URL}" \
--auth "PAT" \
--token $(cat "${AZP_TOKEN_FILE}") \
--pool "${AZP_POOL:-Default}" \
--work "${AZP_WORK:-_work}" \
--replace \
--acceptTeeEula &wait$!
print_header "4. Running Azure Pipelines agent..."
chmod +x ./run.sh
# To be aware of TERM and INT signals call ./run.sh# Running it with the --once flag at the end will shut down the agent after the build is executed
./run.sh "$@"&wait$!
If I revert back to the previous version available in DevOps (3.248), this Dockerfile (and our own version of it) works fine and I can boot up the agent locally with no issues.
I am running these from a Mac M3 with MacOS Sequoia 15.3.
What could potentially be causing the issue and is there any known fix for this? The error output is far from verbose so I have a hard time figuring it out.
Versions
As mentioned, I am using the latest version available on DevOps (4.248), which does not work. Downgrading to 3.248 does work. The image is built and ran from a Mac M3 with MacOS Sequoia 15.3.
Environment type (Please select at least one enviroment where you face this issue)
Self-Hosted
Microsoft Hosted
VMSS Pool
Container
Azure DevOps Server type
dev.azure.com (formerly visualstudio.com)
Azure DevOps Server Version (if applicable)
No response
Operation system
MacOS Sequoia 15.3
Version controll system
Git
Relevant log output
1. Determining matching Azure Pipelines agent...
2. Downloading and extracting Azure Pipelines agent...
3. Configuring Azure Pipelines agent...
___ ______ _ _ _
/ _ \ | ___ (_) | (_)
/ /_\ \_____ _ _ __ ___ ||_/ /_ _ __ ___||_ _ __ ___ ___
| _ |_ / |||'__/ _ \ | __/| | '_ \ / _ \ ||'_ \ / _ \/ __|| | | |/ /| |_| | | | __/ | | | | |_) | __/ | | | | | __/\__ \\_| |_/___|\__,_|_| \___| \_| |_| .__/ \___|_|_|_| |_|\___||___/ | | agent v4.248.0 |_| (commit 4dd8b81)>> End User License Agreements:Building sources from a TFVC repository requires accepting the Team Explorer Everywhere End User License Agreement. This step is not required for building sources from Git repositories.A copy of the Team Explorer Everywhere license agreement can be found at: /agent/license.html>> Connect:Connecting to server ..../config.sh: line 93: 53 Segmentation fault ./bin/Agent.Listener configure "$@"Cleanup. Removing Azure Pipelines agent...
The text was updated successfully, but these errors were encountered:
What happened?
I was updating our Dockerized Linux self-hosted agent to the newest release available in DevOps (4.248). The image builds up fine but when ran locally, I run into the following error in step 3 of the startup process.
Connecting to server ... ./config.sh: line 93: 53 Segmentation fault ./bin/Agent.Listener configure "$@"
Upon discovery, I have checked whether this is due to our Dockerfile, but even when I copy the plain example Dockerfile from the documentation, I get the exact same error. That Dockerfile is like so (I only adjusted it to root access):
The used start.sh is a direct copy from the documentation and is as follows:
If I revert back to the previous version available in DevOps (3.248), this Dockerfile (and our own version of it) works fine and I can boot up the agent locally with no issues.
I am running these from a Mac M3 with MacOS Sequoia 15.3.
What could potentially be causing the issue and is there any known fix for this? The error output is far from verbose so I have a hard time figuring it out.
Versions
As mentioned, I am using the latest version available on DevOps (4.248), which does not work. Downgrading to 3.248 does work. The image is built and ran from a Mac M3 with MacOS Sequoia 15.3.
Environment type (Please select at least one enviroment where you face this issue)
Azure DevOps Server type
dev.azure.com (formerly visualstudio.com)
Azure DevOps Server Version (if applicable)
No response
Operation system
MacOS Sequoia 15.3
Version controll system
Git
Relevant log output
The text was updated successfully, but these errors were encountered: