From 11b001c7ce0def5c0131f7f1cb0499d9235d2994 Mon Sep 17 00:00:00 2001
From: Chase Qi <chase.qi@linaro.org>
Date: Tue, 14 Jun 2022 07:44:26 +0000
Subject: [PATCH] .oniro-ci: add oe-selftest dockerfile

The docker image is based bitbake-builder. 'sudo su - builder' step added for
oe-selftest as 'USER builder' doesn't really load user level profile. The below
vars are misssing before user re-switch.

  SHELL=/usr/bin/bash
  LOGNAME=builder
  LESSCLOSE=/usr/bin/lesspipe %s %s
  LESSOPEN=| /usr/bin/lesspipe %s
  USER=builder
  MAIL=/var/mail/builder

And PATHes are different before and after user re-switch.
Before: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
After: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin

Although 'whoami' command can be found in both PATHes, oe-selftest reports
'whoami' not found issue with the former path, the reason behind is to be
investigated. In general, user instead of root profile should be used for
oe-selftest.

Signed-off-by: Chase Qi <chase.qi@linaro.org>
---
 .oniro-ci/containers/oe-selftest/Dockerfile | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 .oniro-ci/containers/oe-selftest/Dockerfile

diff --git a/.oniro-ci/containers/oe-selftest/Dockerfile b/.oniro-ci/containers/oe-selftest/Dockerfile
new file mode 100644
index 00000000..691e1a86
--- /dev/null
+++ b/.oniro-ci/containers/oe-selftest/Dockerfile
@@ -0,0 +1,18 @@
+FROM chaseqi/bitbake-builder:v1.3
+
+# 'USER builder' doesn't really load user level profile.
+# The below vars are misssing before user re-switch.
+# SHELL=/usr/bin/bash
+# LOGNAME=builder
+# LESSCLOSE=/usr/bin/lesspipe %s %s
+# LESSOPEN=| /usr/bin/lesspipe %s
+# USER=builder
+# MAIL=/var/mail/builder
+# And PATHes are different before and after user re-switch.
+# Before: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+# After: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
+# Although 'whoami' command can be found in both PATHes, oe-selftest reports
+# 'whoami' not found issue with the former path, the reason behind is to be
+# investigated. In general, user instead of root profile should be used for
+# oe-selftest.
+ENTRYPOINT sudo su - builder
-- 
GitLab