-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into fix/documentation
- Loading branch information
Showing
52 changed files
with
588 additions
and
1,134 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Test Install Scripts Debian | ||
|
||
on: | ||
schedule: | ||
# run at 5:00 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 ] | ||
|
||
# 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 | ||
run: | ||
name: ${{ matrix.debian_version_name }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
debian_version_name: ['bullseye', 'buster'] | ||
uses: ./.github/workflows/test_docker_debian_versionname_sub.yml | ||
with: | ||
runs_on: ubuntu-latest | ||
platform: linux/arm/v7 | ||
docker_image_name: rpi-jukebox-rfid | ||
cache_scope: ${{ github.ref }}-test-debian | ||
matrix_usernames: "['pi', 'hans']" | ||
matrix_test_scripts: "['run_installation_tests.sh', 'run_installation_tests2.sh', 'run_installation_tests3.sh']" | ||
debian_version_name: ${{ matrix.debian_version_name }} |
Oops, something went wrong.