Update Distribution #70058
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: Update Distribution | |
on: | |
schedule: | |
- cron: "*/20 * * * *" | |
push: | |
branches: | |
- develop | |
workflow_dispatch: | |
jobs: | |
update: | |
runs-on: ubuntu-22.04 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BASE_FILES_URL: https://raw.githubusercontent.com/MiSTer-devel/Distribution_MiSTer/%s/ | |
DB_JSON_NAME: db.json | |
DB_ID: distribution_mister | |
DB_URL: https://raw.githubusercontent.com/MiSTer-devel/Distribution_MiSTer/main/db.json.zip | |
ZIPS_CONFIG: ./.github/zips_config.json | |
LINUX_GITHUB_REPOSITORY: MiSTer-devel/SD-Installer-Win64_MiSTer | |
BROKEN_MRAS_IGNORE: true | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: develop | |
- name: Install apt-get utilities | |
run: sudo apt-get install sharutils | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Set Git User | |
run: | | |
git config --global user.email "theypsilon@gmail.com" | |
git config --global user.name "The CI/CD Bot" | |
- name: Assert develop files amount to be less than 1000 | |
run: set -exo pipefail && (( $(find . -type f | wc -l) < 1000 )) | |
- name: Download Distribution files | |
run: ./.github/download_distribution.py . | |
- name: Assert Distribution files amount to be over 13000 | |
run: set -exo pipefail && (( $(find . -type f | wc -l) > 13000 )) | |
- name: Commit Distribution files | |
run: ./.github/commit_distribution.sh | |
- name: Build Database | |
run: ./.github/db_operator.py build . | |
- name: New Database Exists? | |
id: db_exists | |
run: if [ -f "${DB_JSON_NAME}" ] ; then echo "new_db=true" >> "${GITHUB_OUTPUT}" ; fi | |
- name: Test Database | |
if: steps.db_exists.outputs.new_db == 'true' | |
run: ./.github/test_database.sh | |
- name: Push Database | |
if: steps.db_exists.outputs.new_db == 'true' | |
run: ./.github/push_database.sh |