• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisióne850897e67026fa235bd34c56adf1c26e6aa1110 (tree)
Tiempo2022-01-19 01:44:16
AutorBrad Smith <brad@coms...>
CommiterAlex Bennée

Log Message

FreeBSD: Upgrade to 12.3 release

Note, since libtasn1 was fixed in 12.3 [*], this commit re-enables GnuTLS.

[*] https://gitlab.com/gnutls/libtasn1/-/merge_requests/71

Signed-off-by: Brad Smith <brad@comstyle.com>
Tested-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Warner Losh <imp@bsdimp.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <YdUCQLVe5JSWZByQ@humpty.home.comstyle.com>
Message-Id: <20220105135009.1584676-31-alex.bennee@linaro.org>

Cambiar Resumen

Diferencia incremental

--- a/.gitlab-ci.d/cirrus.yml
+++ b/.gitlab-ci.d/cirrus.yml
@@ -52,14 +52,11 @@ x64-freebsd-12-build:
5252 NAME: freebsd-12
5353 CIRRUS_VM_INSTANCE_TYPE: freebsd_instance
5454 CIRRUS_VM_IMAGE_SELECTOR: image_family
55- CIRRUS_VM_IMAGE_NAME: freebsd-12-2
55+ CIRRUS_VM_IMAGE_NAME: freebsd-12-3
5656 CIRRUS_VM_CPUS: 8
5757 CIRRUS_VM_RAM: 8G
5858 UPDATE_COMMAND: pkg update
5959 INSTALL_COMMAND: pkg install -y
60- # TODO: Enable gnutls again once FreeBSD's libtasn1 got fixed
61- # See: https://gitlab.com/gnutls/libtasn1/-/merge_requests/71
62- CONFIGURE_ARGS: --disable-gnutls
6360 TEST_TARGETS: check
6461
6562 x64-freebsd-13-build:
--- a/tests/vm/freebsd
+++ b/tests/vm/freebsd
@@ -28,8 +28,8 @@ class FreeBSDVM(basevm.BaseVM):
2828 name = "freebsd"
2929 arch = "x86_64"
3030
31- link = "https://download.freebsd.org/ftp/releases/ISO-IMAGES/12.2/FreeBSD-12.2-RELEASE-amd64-disc1.iso.xz"
32- csum = "a4530246cafbf1dd42a9bd3ea441ca9a78a6a0cd070278cbdf63f3a6f803ecae"
31+ link = "https://download.freebsd.org/ftp/releases/ISO-IMAGES/12.3/FreeBSD-12.3-RELEASE-amd64-disc1.iso.xz"
32+ csum = "36dd0de50f1fe5f0a88e181e94657656de26fb64254412f74e80e128e8b938b4"
3333 size = "20G"
3434 pkgs = [
3535 # build tools
@@ -65,8 +65,6 @@ class FreeBSDVM(basevm.BaseVM):
6565 "zstd",
6666 ]
6767
68- # TODO: Enable gnutls again once FreeBSD's libtasn1 got fixed
69- # See: https://gitlab.com/gnutls/libtasn1/-/merge_requests/71
7068 BUILD_SCRIPT = """
7169 set -e;
7270 rm -rf /home/qemu/qemu-test.*
@@ -74,7 +72,7 @@ class FreeBSDVM(basevm.BaseVM):
7472 mkdir src build; cd src;
7573 tar -xf /dev/vtbd1;
7674 cd ../build
77- ../src/configure --python=python3.7 --disable-gnutls {configure_opts};
75+ ../src/configure --python=python3.7 {configure_opts};
7876 gmake --output-sync -j{jobs} {target} {verbose};
7977 """
8078