summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorAzat Khuzhin <azat@libevent.org>2022-09-14 22:14:28 +0200
committerAzat Khuzhin <azat@libevent.org>2022-09-14 22:14:28 +0200
commitceb6bcd68a2267c5c22ba0d54c452e1fe2ca2143 (patch)
tree40b4b3c11098ce7251784f01556da9fa9b5cb7cf /.github/workflows/build.yml
parent9174ba92429c4bf4b99e29ccdf7ac9d4ba751e8d (diff)
downloadlibevent-ceb6bcd68a2267c5c22ba0d54c452e1fe2ca2143.tar.gz
ci: disable freebsd 13.0 builds (due to issues in the image)
Before it fails with: exec ssh: pkg install -y mbedtls cmake python3 /bin/bash /Users/runner/work/_actions/vmactions/freebsd-vm/v0/run.sh execSSH Config file: freebsd-13.0.conf Pseudo-terminal will not be allocated because stdin is not a terminal. Warning: no access to tty (Bad file descriptor). Thus no job control in this shell. Installing pkg-1.18.3... Newer FreeBSD version for package pkg: To ignore this error set IGNORE_OSVERSION=yes - package: 1301000 - running kernel: 1300139 Ignore the mismatch and continue? [y/N]: Failed to install the following 1 package(s): /tmp//pkg.txz.18yvwm Bootstrapping pkg from pkg+http://pkg.FreeBSD.org/FreeBSD:13:amd64/quarterly, please wait... Verifying signature with trusted certificate pkg.freebsd.org.2013102301... done Error: The process '/bin/bash' failed with exit code 1 And now with: ld-elf.so.1: /lib/libc.so.7: version FBSD_1.7 required by /usr/local/lib/libpython3.9.so.1.0 not found Commenting for now, anyway we do not need such huge CI matrix, because we have only public workers, and they are pretty busy. Cc: @Neilpang
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index ab69718e..75202705 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -746,7 +746,9 @@ jobs:
strategy:
fail-fast: false
matrix:
- release: ["12.3", "13.0", "13.1"]
+ # NOTE: 13.0 has some issues:
+ # ld-elf.so.1: /lib/libc.so.7: version FBSD_1.7 required by /usr/local/lib/libpython3.9.so.1.0 not found
+ release: ["12.3", "13.1"]
EVENT_MATRIX:
- NONE
- NO_SSL
@@ -840,7 +842,9 @@ jobs:
strategy:
fail-fast: false
matrix:
- release: ["12.3", "13.0", "13.1"]
+ # NOTE: 13.0 has some issues:
+ # ld-elf.so.1: /lib/libc.so.7: version FBSD_1.7 required by /usr/local/lib/libpython3.9.so.1.0 not found
+ release: ["12.3", "13.1"]
EVENT_MATRIX:
- NONE
- NO_SSL