From 0db1eeadca5e10f9e674559b13711497870f7555 Mon Sep 17 00:00:00 2001 From: Disconnect3d Date: Tue, 4 Jul 2023 00:11:28 +0200 Subject: [PATCH] Remove ArchLinux from CI (#1776) Since it breaks every now and then. This should be reverted when we start to install deps in a virtualenv --- .github/workflows/docker.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index f428346f..4ff8d3f0 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -6,7 +6,8 @@ jobs: strategy: fail-fast: false matrix: - images: [ubuntu18.04, ubuntu20.04, ubuntu22.04, debian10, debian11, archlinux] + # archlinux is removed for now until we use virtualenv for deps install + images: [ubuntu18.04, ubuntu20.04, ubuntu22.04, debian10, debian11] runs-on: ubuntu-latest timeout-minutes: 30