install venv package #5
Workflow file for this run
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 for Bookworm on Docker | |
on: | |
schedule: | |
# run at 5 every sunday | |
- cron: '0 5 * * 0' | |
push: | |
branches-ignore: | |
- 'future3/**' | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/[email protected] | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Build Bookworm ARMv7 | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
load: true | |
push: false | |
file: ./ci/Dockerfile.bookworm.test_install.armv7 | |
platforms: linux/arm/v7 | |
tags: rpi-jukebox-rfid-bookworm:latest | |
cache-from: type=gha,scope=$GITHUB_REF_NAME-bookworm | |
cache-to: type=gha,mode=max,scope=$GITHUB_REF_NAME-bookworm | |
- name: Run run_installation_tests.sh Bookworm ARMv7 | |
uses: tj-actions/docker-run@v2 | |
with: | |
image: rpi-jukebox-rfid-bookworm:latest | |
name: bookworm_run_installation_tests.sh | |
options: --platform linux/arm/v7 | |
args: | | |
/code/scripts/installscripts/tests/run_installation_tests.sh | |
- name: Run run_installation_tests2.sh Bookworm ARMv7 | |
uses: tj-actions/docker-run@v2 | |
with: | |
image: rpi-jukebox-rfid-bookworm:latest | |
name: bookworm_run_installation_tests2.sh | |
options: --platform linux/arm/v7 | |
args: | | |
/code/scripts/installscripts/tests/run_installation_tests2.sh | |
- name: Run run_installation_tests3.sh Bookworm ARMv7 | |
uses: tj-actions/docker-run@v2 | |
with: | |
image: rpi-jukebox-rfid-bookworm:latest | |
name: bookworm_run_installation_tests3.sh | |
options: --platform linux/arm/v7 | |
args: | | |
/code/scripts/installscripts/tests/run_installation_tests3.sh |