Skip to content

Commit d044a1a

Browse files
authored
Merge pull request #1718 from stackhpc/always-upload-checksums
CI: Upload checksums by default for Ark artifacts
2 parents 786523a + ea76cd2 commit d044a1a

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.github/workflows/ipa-image-build.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,7 @@ jobs:
248248
-e artifact_tag=${{ steps.ipa_image_tag.outputs.ipa_image_tag }} \
249249
-e os_distribution="ubuntu" \
250250
-e os_release="noble" \
251-
-e file_regex='*.kernel' \
252-
-e upload_checksum=true
251+
-e file_regex='*.kernel'
253252
env:
254253
KAYOBE_VAULT_PASSWORD: ${{ secrets.KAYOBE_VAULT_PASSWORD }}
255254
if: inputs.ubuntu-noble && steps.build_ubuntu_noble_ipa.outcome == 'success'
@@ -265,8 +264,7 @@ jobs:
265264
-e artifact_tag=${{ steps.ipa_image_tag.outputs.ipa_image_tag }} \
266265
-e os_distribution="ubuntu" \
267266
-e os_release="noble" \
268-
-e file_regex='*.initramfs' \
269-
-e upload_checksum=true
267+
-e file_regex='*.initramfs'
270268
env:
271269
KAYOBE_VAULT_PASSWORD: ${{ secrets.KAYOBE_VAULT_PASSWORD }}
272270
if: inputs.ubuntu-noble && steps.build_ubuntu_noble_ipa.outcome == 'success'
@@ -307,8 +305,7 @@ jobs:
307305
-e artifact_tag=${{ steps.ipa_image_tag.outputs.ipa_image_tag }} \
308306
-e os_distribution="rocky" \
309307
-e os_release="9" \
310-
-e file_regex='*.kernel' \
311-
-e upload_checksum=true
308+
-e file_regex='*.kernel'
312309
env:
313310
KAYOBE_VAULT_PASSWORD: ${{ secrets.KAYOBE_VAULT_PASSWORD }}
314311
if: inputs.rocky9 && steps.build_rocky_9_ipa.outcome == 'success'
@@ -324,8 +321,7 @@ jobs:
324321
-e artifact_tag=${{ steps.ipa_image_tag.outputs.ipa_image_tag }} \
325322
-e os_distribution="rocky" \
326323
-e os_release="9" \
327-
-e file_regex='*.initramfs' \
328-
-e upload_checksum=true
324+
-e file_regex='*.initramfs'
329325
env:
330326
KAYOBE_VAULT_PASSWORD: ${{ secrets.KAYOBE_VAULT_PASSWORD }}
331327
if: inputs.rocky9 && steps.build_rocky_9_ipa.outcome == 'success'

etc/kayobe/ansible/pulp-artifact-upload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
remote_pulp_password: "{{ stackhpc_release_pulp_password }}"
88
repository_name: "{{ artifact_type }}-{{ openstack_release }}-{{ os_distribution }}-{{ os_release }}"
99
pulp_base_path: "{{ artifact_type }}/{{ openstack_release }}/{{ os_distribution }}/{{ os_release }}"
10-
upload_checksum: false
10+
upload_checksum: true
1111
tasks:
1212
- name: Print artifact tag
1313
ansible.builtin.debug:

0 commit comments

Comments
 (0)