diff options
author | William Wennerström <william@wstrm.dev> | 2021-12-24 13:49:07 +0100 |
---|---|---|
committer | William Wennerström <william@wstrm.dev> | 2021-12-24 13:49:07 +0100 |
commit | 5e750e1fbc92c94e96e1b8c89dd924e6d23d453c (patch) | |
tree | ef71dd746a567b4fbee6394776250a980e119e30 | |
parent | ed79b074c6dfed8d4501452d5d85d80e6c1bc0f4 (diff) | |
download | profani-tty-5e750e1fbc92c94e96e1b8c89dd924e6d23d453c.tar.gz |
Upgrade to OpenBSD 7.0 in CI
-rw-r--r-- | .builds/openbsd.yml | 7 | ||||
-rwxr-xr-x | ci-build.sh | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml index 5f8f6c4e..326bdb5f 100644 --- a/.builds/openbsd.yml +++ b/.builds/openbsd.yml @@ -1,14 +1,15 @@ -image: openbsd/6.8 +image: openbsd/7.0 packages: + - gcc-11.2.0p0 - cmake - gmake - cmocka - libtool - - automake-1.16.2 + - automake-1.16.3 - pkgconf - readline - - python-3.8.6p0 + - python-3.8.12 - autoconf-2.69p3 - autoconf-archive - curl diff --git a/ci-build.sh b/ci-build.sh index e7574b1e..b1a02fc0 100755 --- a/ci-build.sh +++ b/ci-build.sh @@ -89,7 +89,7 @@ case $(uname | tr '[:upper:]' '[:lower:]') in # `-std=gnu99 -fexec-charset=UTF-8` to silence: # src/event/server_events.c:1453:19: error: universal character names are only valid in C++ and C99 # src/event/server_events.c:1454:19: error: universal character names are only valid in C++ and C99 - CC="gcc -std=gnu99 -fexec-charset=UTF-8" + CC="egcc -std=gnu99 -fexec-charset=UTF-8" tests=( "--enable-notifications --enable-icons-and-clipboard --enable-otr --enable-pgp |