We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b596ec7 commit e66e7b3Copy full SHA for e66e7b3
.github/workflows/ci.yml
@@ -25,6 +25,8 @@ jobs:
25
git clone --depth 1 https://github.com/docker-library/bashbrew.git -b master ~/bashbrew
26
strategy="$(~/bashbrew/scripts/github-actions/generate.sh)"
27
strategy="$(~/bashbrew/scripts/github-actions/munge-i386.sh -c <<<"$strategy")"
28
+ strategy="$(sed -e 's/i386/arm64v8/g' <<<"$strategy")" # Ubuntu no longer supports i386, so we have to get a little more clever
29
+ strategy="$(jq -c '.matrix.include[].runs |= if .pull | test("arm64") then .prepare += "\nsudo apt-get update && sudo apt-get install -y qemu-user-static" else . end' <<<"$strategy")"
30
jq . <<<"$strategy" # sanity check / debugging aid
31
echo "::set-output name=strategy::$strategy"
32
0 commit comments