-
Notifications
You must be signed in to change notification settings - Fork 2
68 lines (62 loc) · 2.34 KB
/
package-update-kayobe.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
name: Update Kayobe package repository versions
on:
workflow_dispatch:
inputs:
filter:
description: Space-separated list of regular expressions matching short_name of repositories to update
type: string
required: false
default: ""
kayobe_config_branch:
required: false
description: Branch of StackHPC Kayobe configuration to use
default: stackhpc/2023.1
env:
ANSIBLE_FORCE_COLOR: True
ANSIBLE_VAULT_PASSWORD_FILE: ${{ github.workspace }}/vault-pass
jobs:
package-update-kayobe:
name: Update Kayobe package repository versions
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Release Train & dependencies
uses: ./.github/actions/setup
with:
vault-password: ${{ secrets.ANSIBLE_VAULT_PASSWORD }}
vault-password-file: ${{ env.ANSIBLE_VAULT_PASSWORD_FILE }}
- name: Clone StackHPC Kayobe configuration repository
uses: actions/checkout@v4
with:
repository: stackhpc/stackhpc-kayobe-config
ref: refs/heads/${{ github.event.inputs.kayobe_config_branch }}
path: stackhpc-kayobe-config
- name: Generate Kayobe Pulp repository versions
run: |
ansible-playbook -i ansible/inventory \
ansible/test-pulp-repo-version-query.yml \
ansible/test-kayobe-repo-version-generate.yml \
-e deb_package_repo_filter="'$FILTER'" \
-e rpm_package_repo_filter="'$FILTER'" \
-e kayobe_config_repo_path=./stackhpc-kayobe-config/
env:
FILTER: ${{ github.event.inputs.filter }}
- name: Check for version changes
id: git-diff
run: |
cd stackhpc-kayobe-config/ &&
if ! git diff-index --quiet HEAD; then
echo "changed=true" >> $GITHUB_OUTPUT &&
git diff --color
fi
# TODO: Commit the changes, push to a branch, and create a PR.
# For now, just create an artifact that the user can download.
- name: Upload pulp-repo-versions.yml artifact
if: ${{ steps.git-diff.outputs.changed == 'true' }}
uses: actions/upload-artifact@v4
with:
name: pulp-repo-versions.yml
path: stackhpc-kayobe-config/etc/kayobe/pulp-repo-versions.yml
retention-days: 1