<freeStyleBuild _class='hudson.model.FreeStyleBuild'><action _class='hudson.model.CauseAction'><cause _class='hudson.triggers.SCMTrigger$SCMTriggerCause'><shortDescription>Started by an SCM change</shortDescription></cause></action><action></action><action _class='jenkins.metrics.impl.TimeInQueueAction'><blockedDurationMillis>0</blockedDurationMillis><blockedTimeMillis>0</blockedTimeMillis><buildableDurationMillis>1</buildableDurationMillis><buildableTimeMillis>1</buildableTimeMillis><buildingDurationMillis>374</buildingDurationMillis><executingTimeMillis>374</executingTimeMillis><executorUtilization>1.0</executorUtilization><queuingDurationMillis>5756</queuingDurationMillis><queuingTimeMillis>5756</queuingTimeMillis><subTaskCount>0</subTaskCount><totalDurationMillis>6130</totalDurationMillis><waitingDurationMillis>5754</waitingDurationMillis><waitingTimeMillis>5754</waitingTimeMillis></action><action _class='hudson.plugins.git.util.BuildData'><buildsByBranchName><refsremotesoriginmaster _class='hudson.plugins.git.util.Build'><buildNumber>565</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'><artifactsUrl>https://jenkins.osmocom.org/jenkins/view/gerrit/job/update-osmo-ci-on-slaves-dp/565/artifact</artifactsUrl><changesUrl>https://jenkins.osmocom.org/jenkins/view/gerrit/job/update-osmo-ci-on-slaves-dp/changes</changesUrl><displayUrl>https://jenkins.osmocom.org/jenkins/view/gerrit/job/update-osmo-ci-on-slaves-dp/565/</displayUrl><testsUrl>https://jenkins.osmocom.org/jenkins/view/gerrit/job/update-osmo-ci-on-slaves-dp/565/testReport</testsUrl></action><building>false</building><displayName>#565</displayName><duration>374</duration><estimatedDuration>255</estimatedDuration><fullDisplayName>update-osmo-ci-on-slaves-dp #565</fullDisplayName><id>565</id><inProgress>false</inProgress><keepLog>false</keepLog><number>565</number><queueId>1549463</queueId><result>SUCCESS</result><timestamp>1715848566603</timestamp><url>https://jenkins.osmocom.org/jenkins/view/gerrit/job/update-osmo-ci-on-slaves-dp/565/</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_Tests.cfg</file></path><path><editType>edit</editType><file>ttcn3-asterisk-ims-ue-test/asterisk/pjsip.conf</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><description></description><fullName>Pau Espin Pedrol</fullName><id>pespin</id></culprit></freeStyleBuild>