Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/fatimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,11 @@ jobs:
. venv/bin/activate
openstack image unset --property signature_verified "${{ steps.manifest.outputs.image-id }}" || true

- name: Set image properties
run: |
. venv/bin/activate
. dev/image-set-properties.sh "${{ steps.manifest.outputs.image-id }}"

- name: Upload manifest artifact
uses: actions/upload-artifact@v4
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/s3-image-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,11 @@ jobs:
. venv/bin/activate
bash .github/bin/get-s3-image.sh ${{ env.TARGET_IMAGE }} ${{ env.S3_BUCKET }}

- name: Set Glance image properties correctly for Slurm images
run: |
. venv/bin/activate
. dev/image-set-properties.sh "${{ env.TARGET_IMAGE }}"

- name: Cleanup OpenStack Image (on error or cancellation)
if: cancelled() || failure()
run: |
Expand Down
Loading