Nightly package repository sync #475
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: Nightly package repository sync | |
on: | |
schedule: | |
# Daily at 23:17 | |
- cron: '17 23 * * *' | |
env: | |
ANSIBLE_FORCE_COLOR: True | |
jobs: | |
sync-matrix-build: | |
name: Build package matrix of package repo sync jobs | |
runs-on: arc-release-train-runner | |
outputs: | |
matrix: ${{ steps.matrix-build.outputs.matrix }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install wget | |
- name: Install YQ | |
uses: dcarbone/[email protected] | |
- name: Create sync matrix | |
id: matrix-build | |
# Use YQ to make a list of all unique sync groups, and format as a GH | |
# actions matrix | |
run: | | |
groups=$(yq -o=json -I=0 \ | |
'([.rpm_package_repos[] | .sync_group | select(.) ]) + ([.deb_package_repos[] | .sync_group | select(.) ]) | unique' \ | |
ansible/inventory/group_vars/all/package-repos) | |
echo -n "matrix={\"sync_group\": " >> $GITHUB_OUTPUT | |
echo -n $groups >> $GITHUB_OUTPUT | |
echo "}" >> $GITHUB_OUTPUT | |
- name: Print sync matrix | |
run: | | |
echo "Package sync matrix:" | |
echo -n "${{ steps.matrix-build.outputs.matrix }}" | |
sync-matrix-run: | |
name: Sync | |
needs: | |
- sync-matrix-build | |
strategy: | |
matrix: ${{ fromJson(needs.sync-matrix-build.outputs.matrix) }} | |
max-parallel: 1 | |
fail-fast: False | |
uses: stackhpc/stackhpc-release-train/.github/workflows/package-sync.yml@main | |
with: | |
sync_ark: True | |
sync_test: False | |
package_sync_group: ${{ matrix.sync_group }} | |
secrets: inherit |