summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu.vizoso@collabora.com>2020-07-31 06:51:47 +0200
committerTomeu Vizoso <tomeu.vizoso@collabora.com>2020-07-31 14:14:38 +0200
commitcf8a8b764e53c3c81ca9ec6e799281b248954ffe (patch)
tree0f7b16e94cecfb0dd49c6787322775eeac68df28 /.gitlab-ci
parent7f40db42a2d8af9565f5338acd96afb56d6f85b9 (diff)
ci: Set date in LAVA DUTs from NTP servers
The MinIO server is sometimes complaining about the submitted date being too off. Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Reviewed-by: Daniel Stone <daniels@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6135>
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/create-rootfs.sh1
-rwxr-xr-x.gitlab-ci/generate_lava.py4
-rw-r--r--.gitlab-ci/lava-deqp.yml.jinja22
-rw-r--r--.gitlab-ci/lava-gitlab-ci.yml2
-rw-r--r--.gitlab-ci/lava-tracie.yml.jinja22
5 files changed, 4 insertions, 7 deletions
diff --git a/.gitlab-ci/create-rootfs.sh b/.gitlab-ci/create-rootfs.sh
index 4f4609ed4c6..fdb1f587f36 100644
--- a/.gitlab-ci/create-rootfs.sh
+++ b/.gitlab-ci/create-rootfs.sh
@@ -41,6 +41,7 @@ apt-get -y install --no-install-recommends \
python3-pytest \
python3-requests \
python3-yaml \
+ sntp \
wget \
xz-utils
diff --git a/.gitlab-ci/generate_lava.py b/.gitlab-ci/generate_lava.py
index 6f887c5f90b..66b898841f4 100755
--- a/.gitlab-ci/generate_lava.py
+++ b/.gitlab-ci/generate_lava.py
@@ -43,10 +43,6 @@ values['tags'] = args.lava_tags
values['env_vars'] = env_vars
values['deqp_version'] = args.deqp_version
-# We need a sane date to check certificates, but don't want to wait to get
-# time from the network after boot.
-values['date'] = datetime.datetime.now().strftime("%Y%m%d %H%M")
-
f = open(os.path.splitext(os.path.basename(args.template))[0], "w")
f.write(template.render(values))
f.close()
diff --git a/.gitlab-ci/lava-deqp.yml.jinja2 b/.gitlab-ci/lava-deqp.yml.jinja2
index 639f1d1f40e..5ec39337b73 100644
--- a/.gitlab-ci/lava-deqp.yml.jinja2
+++ b/.gitlab-ci/lava-deqp.yml.jinja2
@@ -73,7 +73,7 @@ actions:
- mkdir -p /dev/pts
- mount -t devpts devpts /dev/pts
- echo "nameserver 8.8.8.8" > /etc/resolv.conf
- - date "+%Y%m%d %H%M" -s "{{ date }}"
+ - for i in 1 2 3; do sntp -sS pool.ntp.org && break || sleep 2; done
{% if env_vars %}
diff --git a/.gitlab-ci/lava-gitlab-ci.yml b/.gitlab-ci/lava-gitlab-ci.yml
index 7501d09233c..dd6b4810508 100644
--- a/.gitlab-ci/lava-gitlab-ci.yml
+++ b/.gitlab-ci/lava-gitlab-ci.yml
@@ -1,5 +1,5 @@
variables:
- DISTRIBUTION_TAG: "2020-07-28-x86"
+ DISTRIBUTION_TAG: "2020-07-31-ntp-2"
.kernel+rootfs:
stage: container-2
diff --git a/.gitlab-ci/lava-tracie.yml.jinja2 b/.gitlab-ci/lava-tracie.yml.jinja2
index 0811c6724fe..d0109bc2468 100644
--- a/.gitlab-ci/lava-tracie.yml.jinja2
+++ b/.gitlab-ci/lava-tracie.yml.jinja2
@@ -73,7 +73,7 @@ actions:
- mkdir -p /dev/pts
- mount -t devpts devpts /dev/pts
- echo "nameserver 8.8.8.8" > /etc/resolv.conf
- - date "+%Y%m%d %H%M" -s "{{ date }}"
+ - for i in 1 2 3; do sntp -sS pool.ntp.org && break || sleep 2; done
{% if env_vars %}