diff options
author | Sander Vrijders <sander@ouroboros.rocks> | 2023-11-08 15:41:45 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri@ouroboros.rocks> | 2023-11-08 16:28:52 +0100 |
commit | eacf47723eb7084f6f067ad30bb58c163a7c918a (patch) | |
tree | ff0d134868aa30bc884e63003132a6fcb789feb9 | |
parent | d7e3ef70b601831d5bef3fef21fa16b761f561e8 (diff) | |
download | ouroboros-eacf47723eb7084f6f067ad30bb58c163a7c918a.tar.gz ouroboros-eacf47723eb7084f6f067ad30bb58c163a7c918a.zip |
build: Change appveyor build VM to Ubuntu2204
We were building on an Ubuntu1804. Probably best to change to newer
versions.
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
-rw-r--r-- | appveyor.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml index 5c663735..a1cc2023 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ image: - - Ubuntu1804 - - Ubuntu + - Ubuntu2004 + - Ubuntu2204 platform: - x64 @@ -13,11 +13,11 @@ configuration: environment: matrix: - CC: clang - - CC: gcc install: - sudo apt-get update + - sudo apt-get install clang - sudo apt-get install protobuf-c-compiler --yes - sudo apt-get install libprotobuf-c-dev --yes || true - sudo apt-get install libgcrypt20-dev libssl-dev libfuse-dev dnsutils --yes |