Skip to content

Bump version to v1.19.2-2.2 #533

Bump version to v1.19.2-2.2

Bump version to v1.19.2-2.2 #533

Workflow file for this run

name: Linux
on:
push:
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
name: Build & Test
strategy:
fail-fast: false
matrix:
include:
- dockerfile: v1.19/debian
- dockerfile: v1.19/arm64/debian
runs-on: >-
${{ (contains(matrix.dockerfile, 'arm64')) && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Build
run: make image DOCKERFILE=${{ matrix.dockerfile }} VERSION=test
- name: Test
run: make test DOCKERFILE=${{ matrix.dockerfile }} VERSION=test