Test Install Scripts Debian #101
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Install Scripts Debian | |
on: | |
schedule: | |
# run at 5:00 every sunday | |
- cron: '0 5 * * 0' | |
push: | |
branches-ignore: | |
- 'future3/**' | |
paths: | |
- '.github/workflows/test_docker_debian*.yml' | |
- 'ci/**' | |
- 'misc/sampleconfigs/**' | |
- 'scripts/helperscripts/setup_*' | |
- 'scripts/installscripts/**' | |
- 'settings/version-number' | |
- 'packages*.txt' | |
- 'requirements*.txt' | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: | |
- develop | |
- master | |
paths: | |
- '.github/workflows/test_docker_debian*.yml' | |
- 'ci/**' | |
- 'misc/sampleconfigs/**' | |
- 'scripts/helperscripts/setup_*' | |
- 'scripts/installscripts/**' | |
- 'settings/version-number' | |
- 'packages*.txt' | |
- 'requirements*.txt' | |
# let only one instance run the test so cache is not corrupted. | |
# cancel already running instances as only the last run will be relevant | |
concurrency: | |
group: ${{ github.ref }}-test-debian | |
cancel-in-progress: true | |
jobs: | |
# Build container and run tests. Duplication of job intended for better visualization. | |
run_bookworm_armv7: | |
name: 'bookworm armv7' | |
uses: ./.github/workflows/test_docker_debian_codename_sub.yml | |
with: | |
debian_codename: 'bookworm' | |
platform: linux/arm/v7 | |
# # can be activate on test branches | |
# run_bookworm_armv6: | |
# name: 'bookworm armv6' | |
# uses: ./.github/workflows/test_docker_debian_codename_sub.yml | |
# with: | |
# debian_codename: 'bookworm' | |
# platform: linux/arm/v6 | |
run_bullseye_armv7: | |
name: 'bullseye armv7' | |
uses: ./.github/workflows/test_docker_debian_codename_sub.yml | |
with: | |
debian_codename: 'bullseye' | |
platform: linux/arm/v7 | |
# # can be activate on test branches, currently failing | |
# run_bullseye_armv6: | |
# name: 'bullseye armv6' | |
# uses: ./.github/workflows/test_docker_debian_codename_sub.yml | |
# with: | |
# debian_codename: 'bullseye' | |
# platform: linux/arm/v6 |