ef9089f4e8
Update to the head of the upstream staging branch * Patches 0005-0042 are from the upstream staging branch * Previous patches 0005 & 0006 are now patches 0023 & 0005 Rename redhat patches * Previous patches 0007-0017 are now patches 0043-0053 Change from using readline to libedit * readline is licensed GPL v3, and multipathd includes code licensed gpl v2. Remove README.alua * information moved to README.md
41 lines
1.3 KiB
Diff
41 lines
1.3 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Martin Wilck <mwilck@suse.com>
|
|
Date: Tue, 16 Aug 2022 23:38:18 +0200
|
|
Subject: [PATCH] GitHub workflows: foreign.yaml: switch to Debian 11
|
|
(bullseye)
|
|
|
|
Building the containers in the build-multipath project recently
|
|
started failing for buster/s390x and buster/ppc64el. That failure
|
|
had nothing to do with the switch to libedit.
|
|
|
|
It's about time to switch to bullseye anyway.
|
|
|
|
Signed-off-by: Martin Wilck <mwilck@suse.com>
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
---
|
|
.github/workflows/foreign.yaml | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/.github/workflows/foreign.yaml b/.github/workflows/foreign.yaml
|
|
index 32915186..f6e69709 100644
|
|
--- a/.github/workflows/foreign.yaml
|
|
+++ b/.github/workflows/foreign.yaml
|
|
@@ -13,7 +13,7 @@ jobs:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
- os: [buster]
|
|
+ os: [bullseye]
|
|
arch: ['ppc64le', 'aarch64', 's390x']
|
|
container: mwilck/multipath-build-${{ matrix.os }}-${{ matrix.arch }}
|
|
steps:
|
|
@@ -44,7 +44,7 @@ jobs:
|
|
needs: build
|
|
strategy:
|
|
matrix:
|
|
- os: [buster]
|
|
+ os: [bullseye]
|
|
arch: ['ppc64le', 'aarch64', 's390x']
|
|
steps:
|
|
- name: get binaries
|