diff options
author | Li-Wen Hsu <lwhsu@lwhsu.org> | 2023-01-10 04:32:01 +0800 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2023-01-18 10:06:34 +0100 |
commit | 5e988b9614e861df7aad03a0fe06a75b5b0d1c82 (patch) | |
tree | 6ceedeb90d1501cb14bb9cab9be810bf9f3361c1 /.gitlab-ci.d/cirrus.yml | |
parent | 7c9236d6d61f30583d5d860097d88dbf0fe487bf (diff) |
Upgrade all packages in the FreeBSD VMs to ensure the freshness
This (hopefully) fixes the errors that we currently see in the
FreeBSD jobs in the gitlab CI:
ld-elf.so.1: /usr/local/bin/bash: Undefined symbol "rl_set_timeout"
Signed-off-by: Li-Wen Hsu <lwhsu@lwhsu.org>
Message-Id: <CAKBkRUwxL1fkzwpK_2FXKGE31415JRAR8N09+O_ht8CNdfVAqQ@mail.gmail.com>
[thuth: Update subject and patch description]
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to '.gitlab-ci.d/cirrus.yml')
-rw-r--r-- | .gitlab-ci.d/cirrus.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.d/cirrus.yml b/.gitlab-ci.d/cirrus.yml index 785b163aa6..502dfd612c 100644 --- a/.gitlab-ci.d/cirrus.yml +++ b/.gitlab-ci.d/cirrus.yml @@ -53,7 +53,7 @@ x64-freebsd-12-build: CIRRUS_VM_IMAGE_NAME: freebsd-12-4 CIRRUS_VM_CPUS: 8 CIRRUS_VM_RAM: 8G - UPDATE_COMMAND: pkg update + UPDATE_COMMAND: pkg update; pkg upgrade -y INSTALL_COMMAND: pkg install -y TEST_TARGETS: check @@ -66,7 +66,7 @@ x64-freebsd-13-build: CIRRUS_VM_IMAGE_NAME: freebsd-13-1 CIRRUS_VM_CPUS: 8 CIRRUS_VM_RAM: 8G - UPDATE_COMMAND: pkg update + UPDATE_COMMAND: pkg update; pkg upgrade -y INSTALL_COMMAND: pkg install -y TEST_TARGETS: check |