btrfs-progs/.github/workflows/ci-build-test.yml
David Sterba 3139c26079 btrfs-progs: ci: run more workflows after pushing master branch
Run release tests after pushing master branch to verify that everything
is ok, also trigger the static build so there are binaries built with
the new version tag.

Signed-off-by: David Sterba <dsterba@suse.com>
2023-06-15 13:41:52 +02:00

31 lines
724 B
YAML

# Workflow for testing branch 'release-test'
#
# - all compatibility docker image build tests (no local build)
name: CI image tests
run-name: CI image tests
on:
push:
branches:
- release-test
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: CI Centos7
run: ci/ci-build-centos7
- name: CI Centos8
run: ci/ci-build-centos8
- name: CI Leap 15.3
run: ci/ci-build-leap153
- name: CI Leap 15.4
run: ci/ci-build-leap154
- name: CI Musl
run: ci/ci-build-musl
- name: CI Musl (32bit)
run: ci/ci-build-musl-i386
- name: CI Tumbleweed
run: ci/ci-build-tumbleweed