From 7dbff168147047c90b9c3dd8cb622b4ef886fb4d Mon Sep 17 00:00:00 2001 From: "Chayim I. Kirshen" Date: Thu, 11 Jan 2024 13:32:29 +0200 Subject: [PATCH 1/2] trying i386 --- .github/workflows/build-linux-i386.yml | 41 ++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/build-linux-i386.yml diff --git a/.github/workflows/build-linux-i386.yml b/.github/workflows/build-linux-i386.yml new file mode 100644 index 0000000..ceabc00 --- /dev/null +++ b/.github/workflows/build-linux-i386.yml @@ -0,0 +1,41 @@ +name: Build (intel) redis + +on: + push: + paths-ignore: + - 'docs/**' + - 'README.md' + branches: + - master + - '[0-9].[0-9]' + - '[0-9].[0-9].[0-9]' + pull_request: + workflow_dispatch: + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-linuxx64 + cancel-in-progress: true + +permissions: + contents: read + packages: write + +jobs: + + debian-bullseye-i386: + uses: ./.github/workflows/REUSABLE-linux.yml + secrets: inherit + with: + docker_image: i386/debian:bullseye + deps: apt-get update -qq && apt-get install -qqy build-essential libssl-dev python3 python3-pip jq wget + osnick: bullseye + arch: i386 + + ubuntu-bionic-i386: + uses: ./.github/workflows/REUSABLE-linux.yml + secrets: inherit + with: + docker_image: ubuntu:20.04 + deps: apt-get update -qq && apt-get install -qqy build-essential libssl-dev python3 python3-pip jq wget + osnick: ubuntu20.04 + arch: i386 From 2171f0da29cf15d9d1682c4eccd3ff8f7d93d616 Mon Sep 17 00:00:00 2001 From: "Chayim I. Kirshen" Date: Thu, 11 Jan 2024 16:25:33 +0200 Subject: [PATCH 2/2] name --- .github/workflows/build-linux-i386.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-linux-i386.yml b/.github/workflows/build-linux-i386.yml index ceabc00..37a7e7d 100644 --- a/.github/workflows/build-linux-i386.yml +++ b/.github/workflows/build-linux-i386.yml @@ -1,4 +1,4 @@ -name: Build (intel) redis +name: Build (i386) redis on: push: