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
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,3 +232,14 @@ jobs:
timeout 180 bash -c 'while ! curl -s -f http://localhost:3000/health > /dev/null; do echo "Waiting..."; sleep 5; done'
echo "Functional test passed successfully!"

- name: Test Backup Script
run: |
echo "Executing backup script..."
./scripts/backup-ai-stack.sh /tmp/test-backups

echo "Verifying backup archives..."
if ! ls /tmp/test-backups/*/*.tar > /dev/null 2>&1; then
echo "❌ Backup archives not found!"
exit 1
fi
echo "✅ Backup archives successfully verified."
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.5.0-rc4] - 2026-04-21

### Added

- **CI/CD**: Added an automated test in the CI smoke test workflow to validate
the `backup-ai-stack.sh` script execution and verify archive creation.

## [0.5.0-rc3] - 2026-04-21

### Security
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Makefile for podman-ai-stack

NAME := podman-ai-stack
VERSION := 0.5.0-rc3
VERSION := 0.5.0-rc4
RPM_VERSION := $(subst -,~,$(VERSION))
BUILD_DIR := $(CURDIR)/rpmbuild
RPM_DIR := $(BUILD_DIR)/RPMS/noarch
Expand Down
Loading