From: Luca Boccassi Date: Sat, 18 Nov 2023 18:15:44 +0000 (+0000) Subject: ci: enable jammy-proposed-updates to get new libsolv X-Git-Tag: v20~143 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=698834c7794f0100eba8ff17125cffc8f6ac8a63;p=thirdparty%2Fmkosi.git ci: enable jammy-proposed-updates to get new libsolv rawhide and tumbleweed now compress repodata with zstd which cannot be handled by libsolv in jammy. Enable jammy-proposed to get new version with the fix. This reverts commit 4cec733f9186edec10904c30b4afd3d1c8857d9d. --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6edc3e845..49f04e076 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,6 +99,10 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Enable proposed-updates + run: | + sudo mkdir -p /etc/apt/sources.list.d/ + echo 'deb http://azure.archive.ubuntu.com/ubuntu jammy-proposed restricted main universe' | sudo tee /etc/apt/sources.list.d/proposed.list - uses: ./ # Make sure the latest changes from the pull request are used. @@ -143,6 +147,10 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Enable proposed-updates + run: | + sudo mkdir -p /etc/apt/sources.list.d/ + echo 'deb http://azure.archive.ubuntu.com/ubuntu jammy-proposed restricted main universe' | sudo tee /etc/apt/sources.list.d/proposed.list - uses: ./ # Make sure the latest changes from the pull request are used.