From b883fe2d0dd52d88c268ee322b5238b6898cb5e6 Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Wed, 19 Jun 2024 11:15:06 +0900 Subject: [PATCH] github: update remote image server Since the Linux Containers project has made the decision to phase out access to linuxcontainers.org image server for LXD users, so we need to switch to new image server to use cgroup v1 images. See https://discuss.linuxcontainers.org/t/important-notice-for-lxd-users-image-server/18479 https://discourse.ubuntu.com/t/new-lxd-image-server-available-images-lxd-canonical-com/43824 Signed-off-by: Kentaro Hayashi --- .github/workflows/yum.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/yum.yml b/.github/workflows/yum.yml index 4525b8f23..0c9dcc05e 100644 --- a/.github/workflows/yum.yml +++ b/.github/workflows/yum.yml @@ -130,6 +130,10 @@ jobs: with: name: packages-${{ matrix.rake-job }} - uses: canonical/setup-lxd@v0.1.1 + - name: Update image server + run: | + lxc remote remove images + lxc remote add images https://images.lxd.canonical.com --protocol=simplestreams - name: Run Test ${{ matrix.test-file }} on ${{ matrix.test-lxc-image }} run: fluent-package/yum/systemd-test/test.sh ${{ matrix.test-lxc-image }} ${{ matrix.test-file }}