From fed56e2c32bcc0846ba37973c43ff088cc7bd4bb Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 11 Feb 2021 10:46:38 +0530 Subject: [PATCH] Disable testing on Arch Running Arch in docker on Ubuntu is currently broken because of https://bugs.archlinux.org/task/69563 --- .github/workflows/ci.yml | 58 ++++++++++++++++++++-------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6388ac2c5..41ed12e678 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,32 +31,32 @@ jobs: run: python setup/unix-ci.py test - archtest: - name: Test on Arch - runs-on: ubuntu-latest - container: - image: 'archlinux/base:latest' - env: - CI: 'true' - steps: - - name: Prepare the container - run: | - pacman -Syu --noconfirm - pacman -S --noconfirm tar - - - name: Checkout source code - uses: actions/checkout@master - with: - fetch-depth: 10 - - - name: Install calibre dependencies - run: setup/arch-ci.sh - - - name: Bootstrap calibre - run: runuser -u ci -- python setup.py bootstrap --ephemeral - - - name: Test calibre - run: | - set -xe - runuser -u ci -- python setup.py test - runuser -u ci -- python setup.py test_rs + # archtest: + # name: Test on Arch + # runs-on: ubuntu-latest + # container: + # image: 'archlinux/base:latest' + # env: + # CI: 'true' + # steps: + # - name: Prepare the container + # run: | + # pacman -Syu --noconfirm + # pacman -S --noconfirm tar + # + # - name: Checkout source code + # uses: actions/checkout@master + # with: + # fetch-depth: 10 + # + # - name: Install calibre dependencies + # run: setup/arch-ci.sh + # + # - name: Bootstrap calibre + # run: runuser -u ci -- python setup.py bootstrap --ephemeral + # + # - name: Test calibre + # run: | + # set -xe + # runuser -u ci -- python setup.py test + # runuser -u ci -- python setup.py test_rs