<freeStyleBuild _class='hudson.model.FreeStyleBuild'><action _class='hudson.model.CauseAction'><cause _class='hudson.model.Cause$UpstreamCause'><shortDescription>Started by upstream project "registry-rebuild-upload-titan" build number 2,014</shortDescription><upstreamBuild>2014</upstreamBuild><upstreamProject>registry-rebuild-upload-titan</upstreamProject><upstreamUrl>job/registry-rebuild-upload-titan/</upstreamUrl></cause></action><action _class='jenkins.metrics.impl.TimeInQueueAction'><blockedDurationMillis>0</blockedDurationMillis><blockedTimeMillis>0</blockedTimeMillis><buildableDurationMillis>5</buildableDurationMillis><buildableTimeMillis>5</buildableTimeMillis><buildingDurationMillis>77876</buildingDurationMillis><executingTimeMillis>77876</executingTimeMillis><executorUtilization>1.0</executorUtilization><subTaskCount>0</subTaskCount><waitingDurationMillis>9946</waitingDurationMillis><waitingTimeMillis>9946</waitingTimeMillis></action><action _class='hudson.plugins.git.util.BuildData'><buildsByBranchName><refsremotesoriginosmithwip _class='hudson.plugins.git.util.Build'><buildNumber>977</buildNumber><marked><SHA1>ae291d598229353d21b6fde72554bdc7f25d30c8</SHA1><branch><SHA1>ae291d598229353d21b6fde72554bdc7f25d30c8</SHA1><name>refs/remotes/origin/osmith/wip</name></branch></marked><revision><SHA1>ae291d598229353d21b6fde72554bdc7f25d30c8</SHA1><branch><SHA1>ae291d598229353d21b6fde72554bdc7f25d30c8</SHA1><name>refs/remotes/origin/osmith/wip</name></branch></revision></refsremotesoriginosmithwip><refsremotesoriginmaster _class='hudson.plugins.git.util.Build'><buildNumber>1463</buildNumber><marked><SHA1>2b9c8e3db8cf77c5ce5c3f888365f983f3ee8d76</SHA1><branch><SHA1>2b9c8e3db8cf77c5ce5c3f888365f983f3ee8d76</SHA1><name>refs/remotes/origin/master</name></branch></marked><revision><SHA1>2b9c8e3db8cf77c5ce5c3f888365f983f3ee8d76</SHA1><branch><SHA1>2b9c8e3db8cf77c5ce5c3f888365f983f3ee8d76</SHA1><name>refs/remotes/origin/master</name></branch></revision></refsremotesoriginmaster></buildsByBranchName><lastBuiltRevision><SHA1>2b9c8e3db8cf77c5ce5c3f888365f983f3ee8d76</SHA1><branch><SHA1>2b9c8e3db8cf77c5ce5c3f888365f983f3ee8d76</SHA1><name>refs/remotes/origin/master</name></branch></lastBuiltRevision><remoteUrl>https://gerrit.osmocom.org/docker-playground</remoteUrl><scmName></scmName></action><action></action><action></action><action _class='org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction'></action><building>false</building><displayName>#1463</displayName><duration>77876</duration><estimatedDuration>46574</estimatedDuration><fullDisplayName>registry-rebuild-upload-ttcn3-bts-tests #1463</fullDisplayName><id>1463</id><inProgress>false</inProgress><keepLog>false</keepLog><number>1463</number><queueId>1549477</queueId><result>SUCCESS</result><timestamp>1715848806633</timestamp><url>https://jenkins.osmocom.org/jenkins/view/all/job/registry-rebuild-upload-ttcn3-bts-tests/1463/</url><builtOn>build2-deb11build-ansible</builtOn><changeSet _class='hudson.plugins.git.GitChangeSetList'><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>ttcn3-asterisk-ims-ue-test/asterisk/pjsip.conf</affectedPath><affectedPath>ttcn3-asterisk-ims-ue-test/Asterisk_Tests.cfg</affectedPath><commitId>f9c8ed8de78b7f6641c9802be2d0cdd2488295fb</commitId><timestamp>1715774999000</timestamp><author><absoluteUrl>https://jenkins.osmocom.org/jenkins/user/pespin</absoluteUrl><fullName>Pau Espin Pedrol</fullName></author><authorEmail>pespin@sysmocom.de</authorEmail><comment>ttcn3-asterisk: Configure asterisk for initial SIP register on IMS side

This set of pjsip config requires work done by jolly in our fork of
asterisk adding IMS features.

Depends: osmo-ttcn3-hacks.git Change-Id Idb3b19ccd82cad25948106b2c72aa424d7f79cd8
Change-Id: I66d128192146ad600203ea2a41b8bf019311d603
</comment><date>2024-05-15 14:09:59 +0200</date><id>f9c8ed8de78b7f6641c9802be2d0cdd2488295fb</id><msg>ttcn3-asterisk: Configure asterisk for initial SIP register on IMS side</msg><path><editType>edit</editType><file>ttcn3-asterisk-ims-ue-test/asterisk/pjsip.conf</file></path><path><editType>edit</editType><file>ttcn3-asterisk-ims-ue-test/Asterisk_Tests.cfg</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>common/ttcn3-docker-run.sh</affectedPath><commitId>2b9c8e3db8cf77c5ce5c3f888365f983f3ee8d76</commitId><timestamp>1715797501000</timestamp><author><absoluteUrl>https://jenkins.osmocom.org/jenkins/user/pespin</absoluteUrl><fullName>Pau Espin Pedrol</fullName></author><authorEmail>pespin@sysmocom.de</authorEmail><comment>ttcn3-docker-run.sh: Fix dumpcap failing to access /data inside docker

In docker, the /data dir is mapped to $VOL_BASE_DIR, which is created by
docker-playground.git jenkins-common.sh, hence as the user running
jenkins.sh in the host system.
As a result, when the dir is mapped to /data, inside the container it
will have the UID:GID of the outter user, not the one inside docker.

Before this patch, if a ttcn3 container was started in jenkins.sh with
--cap-add=NET_ADMIN, then osmo-ttcn3-hacks.git/ttcn3-tcpdump-start.sh
would select dumpcap instead of tcpdump, to attempt to record a pcap
file to /data/$testcase.pcap.
Due to some unknown way of dropping privileges done by dumpcap though,
it was unable to open the /data/$testcase.pcap due to /data being owned
to another user (tcpdump doesn't have this problem).

This patch fixes the above scenario by making sure /data is chowned to
the user running stuff inside docker. This is already kinda expected
since there's a fix_perms() script in jenkins-common.sh reverting files
created during the test so that they can be accessible by outter user
once everything is finished.

Change-Id: I1229a91cdbb1aa73fd94f1bf7e26f34086f06b25
</comment><date>2024-05-15 20:25:01 +0200</date><id>2b9c8e3db8cf77c5ce5c3f888365f983f3ee8d76</id><msg>ttcn3-docker-run.sh: Fix dumpcap failing to access /data inside docker</msg><path><editType>edit</editType><file>common/ttcn3-docker-run.sh</file></path></item><kind>git</kind></changeSet><culprit><absoluteUrl>https://jenkins.osmocom.org/jenkins/user/pespin</absoluteUrl><fullName>Pau Espin Pedrol</fullName></culprit></freeStyleBuild>