Skip to content

OSX, arm and intel

OSX, arm and intel #21

Workflow file for this run

name: Build (intel) redis
on:
push:
paths-ignore:
- 'docs/**'
- 'README.md'
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:
ubuntu-bionic-x86-64:
uses: ./.github/workflows/REUSABLE-linux.yml
with:
docker_image: ubuntu:18.04
deps: apt-get update -qq && apt-get install -qqy build-essential libssl-dev python3 python3-pip jq wget
osnick: ubuntu18.04
secrets: inherit
rhel7-x86-64:
uses: ./.github/workflows/REUSABLE-linux.yml
with:
docker_image: centos:7
deps: |
yum install -y epel-release
yum install -y gcc make jemalloc-devel openssl-devel python3 python3-pip jq wget
osnick: rhel7
secrets: inherit
rhel8-x86-64:
uses: ./.github/workflows/REUSABLE-linux.yml
with:
docker_image: oraclelinux:8
deps: |
dnf install -y oracle-epel-release-el8
dnf install -y gcc make jemalloc-devel openssl-devel tar git python3 python3-pip jq wget
osnick: rhel8
secrets: inherit