Skip to content

Add kava archival build #68

Add kava archival build

Add kava archival build #68

Workflow file for this run

name: gaia-build
on:
pull_request:
branches:
- main
paths:
- 'bin/builder'
- 'arch.Dockerfile'
- 'alpine.Dockerfile'
- '.github/workflows/docker-build.yml'
- '.github/workflows/gaia-build.yml'
push:
branches:
- main
paths:
- 'bin/builder'
- 'arch.Dockerfile'
- 'alpine.Dockerfile'
- '.github/workflows/docker-build.yml'
- '.github/workflows/gaia-build.yml'
jobs:
gaia-build:
uses: ./.github/workflows/docker-build.yml
secrets: inherit
strategy:
fail-fast: false
matrix:
#platform: ["linux/amd64", "linux/arm64"] # need arm runners
platform: ["linux/amd64"]
distro: ["alpine", "arch"]
version:
- 11.0.0
- 10.0.2
- 10.0.1
- 10.0.0
- 9.1.1
include:
# Include Defaults (keep at top)
- binary: "gaiad"
build_command: "make install"
chain_registry_name: "cosmos"
go_version: "1.20"
name: "gaia"
repo: "cosmos/gaia"
os: linux
arch: amd64
denom: uatom
# Include per version
- version: "9.1.1"
go_version: "1.18.10"
with:
name: ${{ matrix.name }}
binary: ${{ matrix.binary }}
build_command: ${{ matrix.build_command }}
chain_registry_name: ${{ matrix.chain_registry_name }}
denom: ${{ matrix.denom }}
go_version: ${{ matrix.go_version }}
os: ${{ matrix.os }}
arch: ${{ matrix.arch }}
distro: ${{ matrix.distro }}
platform: ${{ matrix.platform }}
repo: ${{ matrix.repo }}
version: ${{ matrix.version }}